changes (2412B)
1 add mkfile to each directory for plan9. 2 3 common: 4 add getopt.c to common. 5 insert #include <sys/types.h> before #include <fcntl.h> for off_t in bbox.c. 6 comment out strtok(), ftell(), sqrt() atan2() defs in ext.h. 7 insert #include <sys/types.h> before #include <fcntl.h> for off_t in misc.c. 8 comment out RUNELIB on #endif line in rune.c 9 add defined(plan9) in tempnam.c. 10 change path.h for plan9! 11 12 cropmarks: 13 add cropmarks.rc to cropmarks. 14 15 download: 16 move #include <sys/types.h> before #include <fcntl.h> for off_t in download.c. 17 18 dpost: 19 insert #include <sys/types.h> before #include <fcntl.h> for off_t in dpost.c. 20 added 21 #ifdef plan9 22 #define isascii(c) ((unsigned char)(c)<=0177) 23 #endif 24 after #include <ctype.h> in dpost.c. 25 26 grabit: 27 add grabit.rc to grabit. 28 29 hardcopy: 30 add hardcopy.rc to hardcopy. 31 32 postbgi: 33 insert #include <sys/types.h> before #include <fcntl.h> for off_t in postbgi.c. 34 added 35 #ifdef plan9 36 #define isascii(c) ((unsigned char)(c)<=0177) 37 #endif 38 after #include <ctype.h> in postbgi.c. 39 40 postdaisy: 41 insert #include <sys/types.h> before #include <fcntl.h> for off_t in postdaisy.c. 42 added 43 #ifdef plan9 44 #define isascii(c) ((unsigned char)(c)<=0177) 45 #endif 46 after #include <ctype.h> in postdaisy.c. 47 48 postdmd: 49 insert #include <sys/types.h> before #include <fcntl.h> for off_t in postdmd.c. 50 added 51 #ifdef plan9 52 #define isascii(c) ((unsigned char)(c)<=0177) 53 #endif 54 after #include <ctype.h> in postdmd.c. 55 56 postgif: 57 insert #include <sys/types.h> before #include <fcntl.h> for off_t in postgif.c. 58 added 59 #ifdef plan9 60 #define isascii(c) ((unsigned char)(c)<=0177) 61 #endif 62 after #include <ctype.h> in postgif.c. 63 64 download: 65 added #include <string.h> in download.c. 66 67 dpost: 68 added #include <string.h> in draw.c. 69 70 picpack: 71 added #include <string.h> in picpack.c. 72 73 postmd: 74 insert #include <sys/types.h> before #include <fcntl.h> for off_t in postmd.c. 75 added 76 #ifdef plan9 77 #define isascii(c) ((unsigned char)(c)<=0177) 78 #endif 79 after #include <ctype.h> in postmd.c. 80 added #include <string.h> in picpack.c. 81 82 postprint: 83 insert #include <sys/types.h> before #include <fcntl.h> for off_t in postprint.c. 84 added 85 #ifdef plan9 86 #define isascii(c) ((unsigned char)(c)<=0177) 87 #endif 88 after #include <ctype.h> in postprint.c. 89 90 postreverse: 91 insert #include <sys/types.h> before #include <fcntl.h> for off_t in postreverse.c. 92 93 posttek: 94 insert #include <sys/types.h> before #include <fcntl.h> for off_t in posttek.c. 95