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