Formerly arscan.c.~19~
authorRoland McGrath <roland@redhat.com>
Thu, 11 Jun 1992 04:58:10 +0000 (04:58 +0000)
committerRoland McGrath <roland@redhat.com>
Thu, 11 Jun 1992 04:58:10 +0000 (04:58 +0000)
arscan.c

index 6fe7b2c..40cd7e4 100644 (file)
--- a/arscan.c
+++ b/arscan.c
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
+
+#include "make.h"
+#if    defined (USG) || defined (POSIX)
+#include <fcntl.h>
+#else
+#include <sys/file.h>
+#endif
+
+#ifndef        NO_ARCHIVES
 \f
 /* On the sun386i and in System V rel 3, ar.h defines two different archive
    formats depending upon whether you have defined PORTAR (normal) or PORT5AR
 #endif
 
 #include <ar.h>
-#include <stdio.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-
-#if    defined (USG) || defined (POSIX)
-#include <fcntl.h>
-#else
-#include <sys/file.h>
-#endif
-
-#if    (defined (STDC_HEADERS) || defined (__GNU_LIBRARY__) \
-        || defined (POSIX))
-#include <stdlib.h>
-#include <string.h>
-#define        ANSI_STRING
-#else  /* No standard headers.  */
-
-#ifdef USG
-
-#include <string.h>
-#include <memory.h>
-#define        ANSI_STRING
-
-#else  /* Not USG.  */
-#include <strings.h>
-
-#ifndef        bcmp
-extern int bcmp ();
-#endif
-#ifndef        bzero
-extern void bzero ();
-#endif
-#ifndef        bcopy
-extern void bcopy ();
-#endif
-
-#endif /* USG.  */
-
-extern char *malloc (), *realloc ();
-extern void free ();
-
-#endif /* Standard headers.  */
-
-#ifdef ANSI_STRING
-#define        index(s, c)     strchr((s), (c))
-#define        rindex(s, c)    strrchr((s), (c))
-
-#define bcmp(s1, s2, n)        memcmp ((s1), (s2), (n))
-#define bzero(s, n)    memset ((s), 0, (n))
-#define bcopy(s, d, n) memcpy ((d), (s), (n))
-#endif ANSI_STRING
-#undef ANSI_STRING
-
 
 #ifndef        AIAMAG
 #if    (defined(APOLLO) || defined(HPUX) || defined(hpux) || \
@@ -96,14 +52,6 @@ extern void free ();
 #ifndef        AR_HDR_SIZE
 #define        AR_HDR_SIZE     (sizeof (struct ar_hdr))
 #endif
-
-#if    defined(__GNU_LIBRARY__) || defined(POSIX) || defined(_IBMR2)
-#include <unistd.h>
-#else
-extern int read (), open (), close (), write (), fstat ();
-extern long int lseek (), atol ();
-extern int atoi ();
-#endif
 \f
 /* Takes three arguments ARCHIVE, FUNCTION and ARG.
 
@@ -480,3 +428,5 @@ main (argc, argv)
 }
 
 #endif /* TEST.  */
+\f
+#endif /* NO_ARCHIVES.  */