changeset 757:44ac216afb5b

.
author Jim Meyering <jim@meyering.net>
date Tue, 29 Oct 1996 13:47:56 +0000
parents 98c1dec0f42d
children cd5ec632b29f
files lib/error.c lib/memcpy.c
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lib/error.c
+++ b/lib/error.c
@@ -68,7 +68,7 @@
 # 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 @@
 }
 #  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.
--- 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