aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPo Lu2023-08-13 13:05:38 +0800
committerPo Lu2023-08-13 13:05:38 +0800
commit7ca4c714cb89880a63fc7321644ae7069adb025b (patch)
tree39975da49dea00116b5457a68eec906a5468924c /src
parente09f60045e3e8cead1e7f0eba94187d18ccdd72b (diff)
downloademacs-7ca4c714cb89880a63fc7321644ae7069adb025b.tar.gz
emacs-7ca4c714cb89880a63fc7321644ae7069adb025b.zip
; * src/conf_post.h: Fix typo.
Diffstat (limited to 'src')
-rw-r--r--src/conf_post.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/conf_post.h b/src/conf_post.h
index 524905949f3..5f18e5ae4bb 100644
--- a/src/conf_post.h
+++ b/src/conf_post.h
@@ -478,9 +478,9 @@ extern int emacs_setenv_TZ (char const *);
478 defined in the C library and used by Gnulib. Define a prototype 478 defined in the C library and used by Gnulib. Define a prototype
479 for it here. */ 479 for it here. */
480 480
481#ifndef HAVE_DECL_ENDUTENT 481#if !HAVE_DECL_ENDUTENT
482extern void endutent (void); 482extern void endutent (void);
483#endif /* HAVE_DECL_ENDUTENT */ 483#endif /* !HAVE_DECL_ENDUTENT */
484 484
485/* Now define substitutes for BOOT_TIME if necessary. */ 485/* Now define substitutes for BOOT_TIME if necessary. */
486 486
@@ -488,12 +488,12 @@ extern void endutent (void);
488#include <utmp.h> 488#include <utmp.h>
489 489
490#define BOOT_TIME 2 490#define BOOT_TIME 2
491#endif /* UTMP_H_DEFINES_BOOT_TIME */ 491#endif /* !UTMP_H_DEFINES_BOOT_TIME */
492 492
493/* sysinfo is also absent from some versions of the NDK, yet is 493/* sysinfo is also absent from some versions of the NDK, yet is
494 present on API level 9 and above. */ 494 present on API level 9 and above. */
495 495
496#ifndef HAVE_DECL_SYSINFO 496#if !HAVE_DECL_SYSINFO
497#include <sys/sysinfo.h> 497#include <sys/sysinfo.h>
498 498
499#if __ANDROID_API__ >= 9 499#if __ANDROID_API__ >= 9
@@ -502,6 +502,6 @@ extern int sysinfo (struct sysinfo *info);
502/* Gnulib uses this function unconditionally. */ 502/* Gnulib uses this function unconditionally. */
503#define sysinfo(ignored) ((void) ignored, (errno = ENOSYS), -1) 503#define sysinfo(ignored) ((void) ignored, (errno = ENOSYS), -1)
504#endif /* __ANDROID_API >= 9 */ 504#endif /* __ANDROID_API >= 9 */
505#endif /* HAVE_DECL_SYSINFO */ 505#endif /* !HAVE_DECL_SYSINFO */
506 506
507#endif /* __ANDROID__ */ 507#endif /* __ANDROID__ */