OSDN Git Service

2002-09-19 Jeff Johnston <jjohnstn@redhat.com>
authorjjohnstn <jjohnstn>
Thu, 19 Sep 2002 21:37:20 +0000 (21:37 +0000)
committerjjohnstn <jjohnstn>
Thu, 19 Sep 2002 21:37:20 +0000 (21:37 +0000)
        * libc/syscalls/sysfcntl.c (fcntl): Fix typo in preprocessor
        statement comment.

newlib/ChangeLog
newlib/libc/syscalls/sysfcntl.c

index df30d24..214f771 100644 (file)
@@ -1,5 +1,10 @@
 2002-09-19  Jeff Johnston  <jjohnstn@redhat.com>
 
+       * libc/syscalls/sysfcntl.c (fcntl): Fix typo in preprocessor
+       statement comment.
+
+2002-09-19  Jeff Johnston  <jjohnstn@redhat.com>
+
        * libc/posix/opendir.c (opendir): Change code to check
        for HAVE_FCNTL before calling fcntl.
        * libc/search/hash.c (hash_open): Ditto.
index 4d1c57c..d72403f 100644 (file)
@@ -19,5 +19,5 @@ fcntl (fd, flag, arg)
 #else /* !HAVE_FCNTL */
   errno = ENOSYS;
   return -1;
-#endif /& !HAVE_FCNTL */
+#endif /* !HAVE_FCNTL */
 }