diff options
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 5 | ||||
| -rw-r--r-- | lib-src/profile.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 1e543346707..955f8cd0330 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-08-02 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Use C99-style 'extern inline' if available. | ||
| 4 | * profile.c (SYSTIME_INLINE): Define. | ||
| 5 | |||
| 1 | 2012-08-02 Glenn Morris <rgm@gnu.org> | 6 | 2012-08-02 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * makefile.w32-in (MS_W32_H): Update for new ms-w32.h location. | 8 | * makefile.w32-in (MS_W32_H): Update for new ms-w32.h location. |
diff --git a/lib-src/profile.c b/lib-src/profile.c index d21f2c28e58..3489e492543 100644 --- a/lib-src/profile.c +++ b/lib-src/profile.c | |||
| @@ -30,6 +30,8 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 30 | */ | 30 | */ |
| 31 | #include <config.h> | 31 | #include <config.h> |
| 32 | 32 | ||
| 33 | #define SYSTIME_INLINE EXTERN_INLINE | ||
| 34 | |||
| 33 | #include <inttypes.h> | 35 | #include <inttypes.h> |
| 34 | #include <stdio.h> | 36 | #include <stdio.h> |
| 35 | 37 | ||