emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 7ca4c714cb8: ; * src/conf_post.h: Fix typo.


From: Po Lu
Subject: master 7ca4c714cb8: ; * src/conf_post.h: Fix typo.
Date: Sun, 13 Aug 2023 01:06:31 -0400 (EDT)

branch: master
commit 7ca4c714cb89880a63fc7321644ae7069adb025b
Author: Po Lu <luangruo@yahoo.com>
Commit: Po Lu <luangruo@yahoo.com>

    ; * src/conf_post.h: Fix typo.
---
 src/conf_post.h | 10 +++++-----
 1 file 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 *);
    defined in the C library and used by Gnulib.  Define a prototype
    for it here.  */
 
-#ifndef HAVE_DECL_ENDUTENT
+#if !HAVE_DECL_ENDUTENT
 extern void endutent (void);
-#endif /* HAVE_DECL_ENDUTENT */
+#endif /* !HAVE_DECL_ENDUTENT */
 
 /* Now define substitutes for BOOT_TIME if necessary.  */
 
@@ -488,12 +488,12 @@ extern void endutent (void);
 #include <utmp.h>
 
 #define BOOT_TIME 2
-#endif /* UTMP_H_DEFINES_BOOT_TIME */
+#endif /* !UTMP_H_DEFINES_BOOT_TIME */
 
 /* sysinfo is also absent from some versions of the NDK, yet is
    present on API level 9 and above.  */
 
-#ifndef HAVE_DECL_SYSINFO
+#if !HAVE_DECL_SYSINFO
 #include <sys/sysinfo.h>
 
 #if __ANDROID_API__ >= 9
@@ -502,6 +502,6 @@ extern int sysinfo (struct sysinfo *info);
 /* Gnulib uses this function unconditionally.  */
 #define sysinfo(ignored) ((void) ignored, (errno = ENOSYS), -1)
 #endif /* __ANDROID_API >= 9 */
-#endif /* HAVE_DECL_SYSINFO */
+#endif /* !HAVE_DECL_SYSINFO */
 
 #endif /* __ANDROID__ */



reply via email to

[Prev in Thread] Current Thread [Next in Thread]