]> granicus.if.org Git - file/commitdiff
Add #ifdef MAGIC so it can come from the compile command (Gilmore).
authorIan Darwin <ian@darwinsys.com>
Sun, 30 Aug 1987 10:11:17 +0000 (10:11 +0000)
committerIan Darwin <ian@darwinsys.com>
Sun, 30 Aug 1987 10:11:17 +0000 (10:11 +0000)
src/file.c

index 66cb4cb5f54bc0e31880e126d29be056fe98abd9..7308b93c90d7f5f54988e288703ce53a41637f77 100644 (file)
@@ -15,7 +15,11 @@ int check = 0,               /* check format of magic file */
        nbytes = 0,     /* number of bytes read from a datafile */
        nmagic = 0;     /* number of valid magic[]s */
 FILE *efopen();
+#ifdef MAGIC
+char *magicfile = MAGIC;       /* where magic be found */
+#else
 char *magicfile = "/etc/magic";        /* where magic be found */
+#endif
 char *progname;
 struct stat statbuf;
 struct utimbuf {       /* for utime(2), belongs in a .h file */