*** Makefile.ORIG Tue Feb 4 15:05:20 2025 --- Makefile Sun Feb 4 21:59:42 1996 *************** *** 4,10 # check the Configure file for some examples of device-specific setups # Berkeley flavors of Unix should include -DBSD in the CFLAGS ! CFLAGS = -O LDFLAGS = -s LD = cc LINT = lint --- 4,10 ----- # check the Configure file for some examples of device-specific setups # Berkeley flavors of Unix should include -DBSD in the CFLAGS ! CFLAGS = -O -DBSD -DUTEK LDFLAGS = -s LD = cc LINT = lint *************** *** 12,18 SHAR = shar -a BINDIR = /usr/local/bin MANSECT = 1 ! MANDIR = /usr/man/man$(MANSECT) # # for AT&T Unix PC 7300/3b1 style shared libraries. #SHOBJ = /lib/crt0s.o /lib/shlib.ifile --- 12,18 ----- SHAR = shar -a BINDIR = /usr/local/bin MANSECT = 1 ! MANDIR = /usr/local/man/man$(MANSECT) # # for AT&T Unix PC 7300/3b1 style shared libraries. #SHOBJ = /lib/crt0s.o /lib/shlib.ifile *** devices.c.ORIG Tue Feb 4 15:05:16 2025 --- devices.c Sun Feb 4 16:08:18 1996 *************** *** 5,10 #include #include "msdos.h" #ifdef DELL struct device devices[] = { {'A', "/dev/rdsk/f0d9dt", 0L, 12, 0, (int (*) ()) 0, 40, 2, 9}, --- 5,17 ----- #include #include "msdos.h" + #ifdef UTEK + struct device devices[] = { + {'A', "/dev/rdf00", 0L, 12, 0, (int (*) ()) 0, 40, 2, 9}, + {'A', "/dev/rdf00", 0L, 12, 0, (int (*) ()) 0, 40, 2, 8} + }; + #endif /* UTEK */ + #ifdef DELL struct device devices[] = { {'A', "/dev/rdsk/f0d9dt", 0L, 12, 0, (int (*) ()) 0, 40, 2, 9}, *** dir_make.c.ORIG Sun Feb 4 18:39:50 1996 --- dir_make.c Sun Feb 4 18:41:20 1996 *************** *** 1,4 #include #include #include "msdos.h" --- 1,8 ----- #include + + #ifdef BSD + #include + #else #include #endif *************** *** 1,5 #include #include #include "msdos.h" extern int dir_start, dir_len, clus_size, dir_entries, fat_error, clus_size; --- 4,11 ----- #include #else #include + #endif + #include "msdos.h" extern int dir_start, dir_len, clus_size, dir_entries, fat_error, clus_size; *** dir_write.c.ORIG Tue Feb 4 15:05:18 2025 --- dir_write.c Sun Feb 4 18:41:35 1996 *************** *** 1,4 #include #include #include #include "msdos.h" --- 1,8 ----- #include + + #ifdef BSD + #include + #else #include #endif *************** *** 1,5 #include #include #include #include "msdos.h" --- 4,11 ----- #include #else #include + #endif + #include #include "msdos.h" No differences encountered *** msdos.h.ORIG Tue Feb 4 15:05:16 2025 --- msdos.h Sun Feb 4 15:59:04 1996 *************** *** 52,59 unsigned char junk[476]; /* who cares? */ }; ! typedef void SIG_TYPE; ! /* typedef int SIG_TYPE; */ #ifdef BSD #define strchr index --- 52,59 ----- unsigned char junk[476]; /* who cares? */ }; ! /* typedef void SIG_TYPE; */ ! typedef int SIG_TYPE; #ifdef BSD #define strchr index