summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-10-29 13:47:56 +0000
committerJim Meyering <jim@meyering.net>1996-10-29 13:47:56 +0000
commit552dcada1af3c14c4d357bff0ffff55ce4183102 (patch)
tree08dcf9c04d85ae1ab6ec096fb1de00127eed14d1
parent6d4996af75214fd6fe601f21a7c7ad041b9b7e99 (diff)
downloadgnulib-552dcada1af3c14c4d357bff0ffff55ce4183102.tar.gz
.
-rw-r--r--lib/error.c4
-rw-r--r--lib/memcpy.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/error.c b/lib/error.c
index 541cb0dc97..b167b830c9 100644
--- a/lib/error.c
+++ b/lib/error.c
@@ -68,7 +68,7 @@ unsigned int error_message_count;
# define program_name program_invocation_name
# include <errno.h>
-#else
+#else /* not _LIBC */
/* The calling program should define program_name and set it to the
name of the executing program. */
@@ -92,7 +92,7 @@ private_strerror (errnum)
}
# define strerror private_strerror
# endif /* HAVE_STRERROR */
-#endif /* _LIBC */
+#endif /* not _LIBC */
/* Print the program name and error message MESSAGE, which is a printf-style
format string with optional args.
diff --git a/lib/memcpy.c b/lib/memcpy.c
index 437f622b29..d36cef20c5 100644
--- a/lib/memcpy.c
+++ b/lib/memcpy.c
@@ -2,7 +2,7 @@
if the source overlaps with the destination.
Return DESTADDR. */
-#ifdef HAVE_CONFIG_H
+#if HAVE_CONFIG_H
# include <config.h>
#endif