libitize
authorJim Meyering <jim@meyering.net>
Mon, 4 Nov 1996 17:57:34 +0000 (17:57 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 4 Nov 1996 17:57:34 +0000 (17:57 +0000)
lib/makepath.c
lib/makepath.h
lib/memcmp.c
lib/mkdir.c

index 87d7eb1369255ab84eada923dcbe59c6a2b0ffe1..028e172af1253811b8050f1e31db5d3eb8a075b1 100644 (file)
@@ -44,7 +44,7 @@ char *alloca ();
 
 #if STAT_MACROS_BROKEN
 # undef S_ISDIR
-#endif /* STAT_MACROS_BROKEN.  */
+#endif
 
 #if !defined(S_ISDIR) && defined(S_IFDIR)
 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
index 1d8097d3913c26428a700d20e0cbf5ba8f27419e..e62f54433aa6ce7c4937e68196b66ec98531eef2 100644 (file)
@@ -1,8 +1,8 @@
-#if __STDC__
 # undef __P
-# define __P(args) args
+#if __STDC__
+# define __P(Args) Args
 #else
-# define __P(args) ()
+# define __P(Args) ()
 #endif
 
 int
index 98f7ed79115c2b1a917175782b0fabebac48797b..6096651e5bb2d3917dc23fc8559b11b4208ae866 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1993 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1993, 1995 Free Software Foundation, Inc.
    Contributed by Torbjorn Granlund (tege@sics.se).
 
 NOTE: The canonical source of this file is maintained with the GNU C Library.
@@ -364,3 +364,10 @@ memcmp (s1, s2, len)
 
   return 0;
 }
+
+#ifdef weak_alias
+#undef bcmp
+weak_alias (memcmp, bcmp)
+#endif
+
+
index 8495ad94bc41b77d33f3a1993c395c8505418323..95fb1a6d40e383a799af444057b629118e856d15 100644 (file)
@@ -1,4 +1,4 @@
-/* mkdir.c -- BSD compatible make directory function for System V
+/* BSD compatible make directory function for System V
    Copyright (C) 1988, 1990 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
@@ -15,8 +15,8 @@
    along with this program; if not, write to the Free Software Foundation,
    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
-#ifdef HAVE_CONFIG_H
-#include <config.h>
+#if HAVE_CONFIG_H
+# include <config.h>
 #endif
 
 #include <sys/types.h>
 extern int errno;
 #endif
 
-#ifdef STAT_MACROS_BROKEN
-#undef S_ISDIR
+#if STAT_MACROS_BROKEN
+# undef S_ISDIR
 #endif
 
 #if !defined(S_ISDIR) && defined(S_IFDIR)
-#define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
+# define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
 #endif
 
 /* mkdir adapted from GNU tar.  */