# This is a shell archive. # Remove everything above and including the cut line. # Then run the rest of the file through sh. #----cut here-----cut here-----cut here-----cut here----# #!/bin/sh # shar: Shell Archiver # Run the following text with /bin/sh to create: # errnoLib.h.patch # etherLib.h.patch # excLib.h.patch # fioLib.h.patch # fppLib.h.patch # ftpLib.h.patch # hostLib.h.patch # inetLib.h.patch # ioLib.h.patch # iosLib.h.patch # iv68k.h.patch # loadLib.h.patch # lstLib.h.patch # memLib.h.patch # nfsLib.h.patch # remLib.h.patch # rngLib.h.patch # This archive created: Mon Jun 18 09:17:53 1990 echo shar: extracting errnoLib.h.patch '(589 characters)' sed 's/^X//' << \SHAR_EOF > errnoLib.h.patch X*** ../old/errnoLib.h Tue Apr 3 14:13:17 1990 X--- errnoLib.h Tue Apr 3 14:08:49 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,22jan90,rekn ansi-fied. X 01b,05jun88,dnw changed stsLib to errnoLib. X 01a,29apr88,gae written. X */ X*************** X*** 16,19 **** X--- 17,30 ---- X X #define S_errnoLib_INT_NEST_TOO_DEEP (M_errnoLib | 1) X X+ /* functions */ X+ IMPORT int errnoGet(void); X+ IMPORT int errnoOfTaskGet(int); X+ IMPORT STATUS errnoSet(int); X+ IMPORT STATUS errnoOfTaskSet(int, int); X+ X #endif INCerrnoLibh X+ X+ X+ X+ SHAR_EOF if test 589 -ne "`wc -c errnoLib.h.patch`" then echo shar: error transmitting errnoLib.h.patch '(should have been 589 characters)' fi echo shar: extracting etherLib.h.patch '(800 characters)' sed 's/^X//' << \SHAR_EOF > etherLib.h.patch X*** ../old/etherLib.h Tue Apr 3 14:13:17 1990 X--- etherLib.h Tue Apr 3 14:08:49 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,03apr90,rekn Ansi-fied. X 01b,01nov87,dnw added etherOutputHookRtn. X 01a,28aug87,dnw written X */ X*************** X*** 10,16 **** X #ifndef INCetherLibh X #define INCetherLibh X X IMPORT FUNCPTR etherInputHookRtn; X IMPORT FUNCPTR etherOutputHookRtn; X X! #endif X--- 11,23 ---- X #ifndef INCetherLibh X #define INCetherLibh X X+ X IMPORT FUNCPTR etherInputHookRtn; X IMPORT FUNCPTR etherOutputHookRtn; X X! /* Functions */ X! IMPORT STATUS etherInputHookAdd(FUNCPTR); X! IMPORT STATUS etherOutput(struct ifnet *, struct ether_header *, int); X! IMPORT STATUS etherOutputHookAdd(FUNCPTR); X! X! #endif INCetherLibh SHAR_EOF if test 800 -ne "`wc -c etherLib.h.patch`" then echo shar: error transmitting etherLib.h.patch '(should have been 800 characters)' fi echo shar: extracting excLib.h.patch '(624 characters)' sed 's/^X//' << \SHAR_EOF > excLib.h.patch X*** ../old/excLib.h Tue Apr 3 14:13:18 1990 X--- excLib.h Tue Apr 3 14:08:50 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,03apr90,rekn ANSI-fied. X 01a,28may88,dnw written X */ X X*************** X*** 33,37 **** X--- 34,44 ---- X #define EXC_INSTR_REG 0x20 /* instruction register valid */ X #define EXC_INVALID_TYPE 0x80 /* special indicator: ESF type was bad; X * type is in funcCode field */ X+ X+ /* Functions */ X+ IMPORT void excHookAdd(FUNCPTR); X+ IMPORT STATUS excInit(void); X+ IMPORT void execTask(void); X+ IMPORT STATUS excVecInit(void); X X #endif SHAR_EOF if test 624 -ne "`wc -c excLib.h.patch`" then echo shar: error transmitting excLib.h.patch '(should have been 624 characters)' fi echo shar: extracting fioLib.h.patch '(1053 characters)' sed 's/^X//' << \SHAR_EOF > fioLib.h.patch X*** /vx/h/fioLib.h Thu May 25 18:06:27 1989 X--- fioLib.h Mon Jun 18 08:51:38 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,17jan90,rekn modified for ansi prototypes. X 01b,24dec86,gae changed stsLib.h to vwModNum.h. X 01a,07aug84,ecs written X */ X*************** X*** 16,20 **** X--- 17,33 ---- X /* fioLib status codes */ X X #define S_fioLib_UNEXPECTED_EOF (M_fioLib | 1) X+ X+ /* function prototypes */ X+ IMPORT void fdprintf(int, char *, ...); /* printf on given fd */ X+ IMPORT void fioFormat(char *, ...); /* format processor */ X+ IMPORT int fioRdString(int, char *, int); /* read string from file */ X+ IMPORT int fioRead(int, char *, int); /* read */ X+ IMPORT int fioStdErr(void); /* obsolete */ X+ IMPORT int fioStdIn(void); /* obsolete */ X+ IMPORT int fioStdOut(void); /* obsolete */ X+ IMPORT void printErr(char *, ...); /* printf to stderr */ X+ IMPORT int sprintf(char *, char *, ...); /* convert to text */ X+ IMPORT int sscanf(char *, char *, ...); /* convert from text */ X X #endif SHAR_EOF if test 1053 -ne "`wc -c fioLib.h.patch`" then echo shar: error transmitting fioLib.h.patch '(should have been 1053 characters)' fi echo shar: extracting fppLib.h.patch '(795 characters)' sed 's/^X//' << \SHAR_EOF > fppLib.h.patch X*** ../old/fppLib.h Tue Apr 3 14:13:19 1990 X--- fppLib.h Tue Apr 3 14:08:51 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,03apr90,rekn ANSI-fied. X 01b,18mar88,gae boosted FP_STATE_FRAME_SIZE by 32 for MC68882. X 01a,12aug87,gae written. X */ X*************** X*** 42,46 **** X--- 43,58 ---- X #define STATEFRAME 0x6c /* OFFSET(FP_CONTEXT, stateFrame[0]) */ X X #endif ASMLANGUAGE X+ X+ /* Functions */ X+ X+ IMPORT void fppInit(void); X+ IMPORT STATUS fppProbe(void); X+ IMPORT void fppRestore(FP_CONTEXT *); X+ IMPORT void fppSave(FP_CONTEXT *); X+ IMPORT STATUS fppTaskRegsGet(int, double *, int *, int *, int *); X+ IMPORT STATUS fppTaskRegsSet(int, double *, int, int, int); X+ IMPORT void fppTaskRegsShow(int); X+ X X #endif INCfppLibh SHAR_EOF if test 795 -ne "`wc -c fppLib.h.patch`" then echo shar: error transmitting fppLib.h.patch '(should have been 795 characters)' fi echo shar: extracting ftpLib.h.patch '(822 characters)' sed 's/^X//' << \SHAR_EOF > ftpLib.h.patch X*** ../old/ftpLib.h Tue Apr 3 14:13:20 1990 X--- ftpLib.h Tue Apr 3 14:08:52 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,03apr90,rekn ANSI-fied. X 01b,20mar87,dnw prepended FTP_ to reply codes. X 01a,07nov86,dnw written X */ X*************** X*** 59,63 **** X--- 60,75 ---- X #define BLK_RESTART 0x10 /* Block is Restart Marker */ X X #define BLK_BYTECOUNT 2 /* Bytes in this block */ X+ X+ /*Functions */ X+ IMPORT int ftpCommand(int, char *, ...); X+ IMPORT int ftpDataConnGet(int); X+ IMPORT int ftpDataConnInit(int); X+ IMPORT int ftpHookup(char *); X+ IMPORT STATUS ftpLogin(int, char *, char *, char *); X+ IMPORT int ftpReplyGet(int, BOOL); X+ IMPORT STATUS ftpXfer(char *, char *, char *, char *, char *, char *, X+ char *, int *, int *); X+ X X #endif SHAR_EOF if test 822 -ne "`wc -c ftpLib.h.patch`" then echo shar: error transmitting ftpLib.h.patch '(should have been 822 characters)' fi echo shar: extracting hostLib.h.patch '(692 characters)' sed 's/^X//' << \SHAR_EOF > hostLib.h.patch X*** ../old/hostLib.h Tue Apr 3 14:13:20 1990 X--- hostLib.h Tue Apr 3 14:08:52 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,22jan90,rekn ansi-fied. X 01c,13apr89,shl added MAXHOSTNAMELEN. X 01b,04jun88,gae changed S_remLib_* to S_hostLib_*. X 01a,28may88,dnw extracted from remLib.h X*************** X*** 17,21 **** X--- 18,29 ---- X X #define S_hostLib_UNKNOWN_HOST (M_hostLib | 1) X #define S_hostLib_HOST_ALREADY_ENTERED (M_hostLib | 2) X+ X+ /* functions */ X+ X+ IMPORT void hostTblInit(void); X+ IMPORT STATUS hostAdd(char *, char *); X+ IMPORT int hostGetByName(char *); X+ IMPORT void hostShow(void); X X #endif INChostLibh SHAR_EOF if test 692 -ne "`wc -c hostLib.h.patch`" then echo shar: error transmitting hostLib.h.patch '(should have been 692 characters)' fi echo shar: extracting inetLib.h.patch '(1046 characters)' sed 's/^X//' << \SHAR_EOF > inetLib.h.patch X*** ../old/inetLib.h Tue Apr 3 14:13:21 1990 X--- inetLib.h Tue Apr 3 14:08:53 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,22jan90,rekn ansi-fied X 01c,24mar88,ecs added include of types.h. X 01b,15dec87,gae added INET_ADDR_LEN; used IMPORTs on function decl's. X 01a,01nov87,llk written X*************** X*** 25,33 **** X X /* function declarations */ X X! IMPORT u_long inet_addr (); X! IMPORT struct in_addr inet_makeaddr (); X! IMPORT u_long inet_network (); X! IMPORT char *inet_ntoa (); X X #endif INCinetLibh X--- 26,39 ---- X X /* function declarations */ X X! IMPORT u_long inet_addr(char *); X! IMPORT struct in_addr inet_makeaddr(int, int); X! IMPORT void inet_makeaddr_b(int, int, struct in_addr *); X! IMPORT u_long inet_network(char *); X! IMPORT char *inet_ntoa(struct in_addr); X! IMPORT void inet_ntoa_b(struct in_addr, char *); X! IMPORT int inet_lnaof(int); X! IMPORT int inet_netof(struct in_addr); X! IMPORT void inet_netof_string(char *, char *); X X #endif INCinetLibh SHAR_EOF if test 1046 -ne "`wc -c inetLib.h.patch`" then echo shar: error transmitting inetLib.h.patch '(should have been 1046 characters)' fi echo shar: extracting ioLib.h.patch '(2360 characters)' sed 's/^X//' << \SHAR_EOF > ioLib.h.patch X*** ../old/ioLib.h Tue Apr 3 14:13:23 1990 X--- ioLib.h Tue Apr 3 14:08:54 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 05a,17jan90,rekn modified for ansi prototypes. X 04c,21apr89,dab added FIOSYNC for sync to disk. X 04b,18nov88,dnw removed NOT_GENERIC stuff. X 04a,22jun88,dnw moved READ, WRITE, and UPDATE back to vxWorks.h. X*************** X*** 36,43 **** X #define INCioLibh X X #include "vwModNum.h" X X- X #define MAX_DIRNAMES 255 /* max directory names in a path -- X same as NFS_MAXDIRNAMES */ X #define MAX_FILENAME_LENGTH 100 /* max chars in filename including EOS*/ X--- 37,44 ---- X #define INCioLibh X X #include "vwModNum.h" X+ #include "iosLib.h" X X #define MAX_DIRNAMES 255 /* max directory names in a path -- X same as NFS_MAXDIRNAMES */ X #define MAX_FILENAME_LENGTH 100 /* max chars in filename including EOS*/ X*************** X*** 155,159 **** X--- 156,185 ---- X #define L_SET 0 /* absolute offset */ X #define L_INCR 1 /* relative to current offset */ X #define L_XTND 2 /* relative to end of file */ X+ X+ /* function prototypes */ X+ IMPORT int open(char *, int , ...); /* open file */ X+ IMPORT STATUS close(int); /* close file */ X+ IMPORT int creat(char *, int); /* create file */ X+ #ifndef __GNUG__ /* Needed due to name clash */ X+ IMPORT STATUS delete(char *); /* delete a file */ X+ #endif X+ IMPORT void ioDefDevGet(char *); /* current default device */ X+ IMPORT void ioDefDirGet(char *); /* current default directory */ X+ IMPORT void ioDefPathGet(char *); /* current default path */ X+ IMPORT STATUS ioDefPathSet(char *); /* set default path */ X+ IMPORT STATUS ioFullFileNameget(char *, DEV_HDR **, char *); /* full */ X+ /* file name */ X+ IMPORT int ioGlobalStdGet(int); /* get global fd for stdin/out/err */ X+ IMPORT void ioGlobalStdSet(int, int); /* set global fd for */ X+ /* stdin/out/err */ X+ IMPORT int ioTaskStdGet(int, int); /* get fd for task's stdin/out/err */ X+ /* */ X+ IMPORT void ioTaskStdSet(int, int, int); /* set fd for task's */ X+ /* stdin/out/err */ X+ IMPORT int ioctl(int, int, int); /* driver specific */ X+ IMPORT int lseek(int, long, int); /* set file pointer */ X+ IMPORT int read(int, char *, int); /* binary read */ X+ IMPORT int write(int, char *, int); /* binary write */ X X #endif INCioLibh SHAR_EOF if test 2360 -ne "`wc -c ioLib.h.patch`" then echo shar: error transmitting ioLib.h.patch '(should have been 2360 characters)' fi echo shar: extracting iosLib.h.patch '(1240 characters)' sed 's/^X//' << \SHAR_EOF > iosLib.h.patch X*** ../old/iosLib.h Tue Apr 3 14:13:23 1990 X--- iosLib.h Tue Apr 3 14:08:54 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,22jan90,rekn ansi-fied. X 01j,30jun88,llk added definition of iosNextDevGet(). X 01i,04jun88,llk removed S_iosLib_INVALID_DEVICE_NAME. X 01h,12apr88,gae moved defn's of FD_ENTRY & DRV_ENTRY to iosLib.c. X*************** X*** 41,47 **** X X /* function declarations */ X X! IMPORT DEV_HDR *iosDevFind (); X! IMPORT DEV_HDR *iosNextDevGet (); X X #endif INCiosLibh X--- 42,61 ---- X X /* function declarations */ X X! IMPORT STATUS iosInit(int, int, char *); X! IMPORT int iosDrvInstall(FUNCPTR, FUNCPTR, FUNCPTR, FUNCPTR, FUNCPTR, X! FUNCPTR, FUNCPTR); X! IMPORT STATUS iosDrvRemove(int , BOOL); X! IMPORT STATUS iosDevAdd(DEV_HDR *, char *, int); X! IMPORT void iosDevDelete(DEV_HDR *); X! IMPORT DEV_HDR *iosDevFind(char *, char **); X! IMPORT DEV_HDR *iosNextDevGet(DEV_HDR *); X! IMPORT void iosDevShow(void); X! IMPORT void iosDrvShow(void); X! IMPORT void iosFdShow(void); X! IMPORT int iosFdValue(int); X! IMPORT void iosFdFree(int); X! IMPORT void iosFdSet(int, DEV_HDR *, char *, int); X! IMPORT int iosFdNew(DEV_HDR *, char *, int); X X #endif INCiosLibh SHAR_EOF if test 1240 -ne "`wc -c iosLib.h.patch`" then echo shar: error transmitting iosLib.h.patch '(should have been 1240 characters)' fi echo shar: extracting iv68k.h.patch '(924 characters)' sed 's/^X//' << \SHAR_EOF > iv68k.h.patch X*** ../old/iv68k.h Tue Apr 3 14:13:24 1990 X--- iv68k.h Tue Apr 3 14:08:54 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,22jan90,rekn ansi-fied. X 01c,29apr88,gae fixed typo's in AUTOVEC's 24-26. X 01b,05jul87,dnw added INUM_TO_IVEC, IVEC_TO_INUM, and TRAPNUM_TO_IVEC. X added IV_TRAP_{0-15} and IV_USER_0. X*************** X*** 85,89 **** X--- 86,103 ---- X X #define IV_USER_0 INUM_TO_IVEC (64) X #define IV_USER_191 INUM_TO_IVEC (255) X+ X+ /* functions */ X+ X+ IMPORT STATUS intConnect(FUNCPTR *, FUNCPTR, int); X+ IMPORT FUNCPTR intHandlerCreate(FUNCPTR, int); X+ IMPORT BOOL intContext(void); X+ IMPORT int intCount(void); X+ IMPORT int intLock(void); X+ IMPORT void intUnlock(int); X+ IMPORT void intVecBaseSet(FUNCPTR *); X+ IMPORT FUNCPTR *intVecBaseGet(void); X+ IMPORT void intVecSet(FUNCPTR *, FUNCPTR); X+ IMPORT FUNCPTR intVecGet(FUNCPTR *); X X #endif SHAR_EOF if test 924 -ne "`wc -c iv68k.h.patch`" then echo shar: error transmitting iv68k.h.patch '(should have been 924 characters)' fi echo shar: extracting loadLib.h.patch '(597 characters)' sed 's/^X//' << \SHAR_EOF > loadLib.h.patch X*** ../old/loadLib.h Tue Apr 3 14:13:25 1990 X--- loadLib.h Tue Apr 3 14:08:56 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,22jan90,rekn ansi-fied. X 01g,05jun88,dnw changed ldLib to loadLib. X 01f,07aug87,ecs added LD_NO_ADDRESS. X 01e,24dec86,gae changed stsLib.h to vwModNum.h. X*************** X*** 30,34 **** X--- 31,40 ---- X #define ALL_SYMBOLS 1 X X #define LD_NO_ADDRESS ((char *) NONE) X+ X+ /*functions */ X+ X+ IMPORT STATUS loadModule(int, int); X+ IMPORT STATUS loadModuleAt(int, int, char **, char **, char **); X X #endif SHAR_EOF if test 597 -ne "`wc -c loadLib.h.patch`" then echo shar: error transmitting loadLib.h.patch '(should have been 597 characters)' fi echo shar: extracting lstLib.h.patch '(1227 characters)' sed 's/^X//' << \SHAR_EOF > lstLib.h.patch X*** ../old/lstLib.h Tue Apr 3 14:13:26 1990 X--- lstLib.h Tue Apr 3 14:08:57 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,22jan90,rekn ansi-fied. X 01d,21may86,llk added forward declaration of lstNStep. X 01c,03jun84,dnw changed list.{head,tail} to list.node. X added declarations of lst{First,Last,Next,Previous}. X*************** X*** 36,47 **** X X /* function declarations */ X X! NODE *lstFirst (); X! NODE *lstGet (); X! NODE *lstLast (); X! NODE *lstNext (); X! NODE *lstNth (); X! NODE *lstPrevious (); X! NODE *lstNStep (); X X #endif X--- 37,56 ---- X X /* function declarations */ X X! IMPORT void lstInit(LIST *); X! IMPORT void lstAdd(LIST *, NODE *); X! IMPORT void lstConcat(LIST *, LIST *); X! IMPORT int lstCount(LIST *); X! IMPORT void lstDelete(LIST *, NODE *); X! IMPORT void lstExtract(LIST *, NODE *, NODE *, LIST *); X! IMPORT NODE *lstFirst (LIST *); X! IMPORT NODE *lstGet (LIST *); X! IMPORT NODE *lstLast (LIST *); X! IMPORT NODE *lstNext (NODE *); X! IMPORT NODE *lstNth (NODE *, int); X! IMPORT NODE *lstPrevious (NODE *); X! IMPORT NODE *lstNStep (NODE *, int); X! IMPORT void lstInsert(LIST *, NODE *, NODE *); X! IMPORT lstFree(LIST *); X X #endif SHAR_EOF if test 1227 -ne "`wc -c lstLib.h.patch`" then echo shar: error transmitting lstLib.h.patch '(should have been 1227 characters)' fi echo shar: extracting memLib.h.patch '(1545 characters)' sed 's/^X//' << \SHAR_EOF > memLib.h.patch X*** /vx/h/memLib.h Thu May 25 18:06:43 1989 X--- memLib.h Mon Jun 18 09:01:48 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 03a,22jan90,rekn ansi0fied. X 02a,11jun88,dnw changed for rev 03a of memLib. X 01l,28mar88,gae added function decl. of calloc(). X 01j,13nov87,gae removed FRAGMENT definition; made function decl.'s IMPORTs. X*************** X*** 80,91 **** X X /* function declarations */ X X! IMPORT char *malloc (); X! IMPORT char *realloc (); X! IMPORT char *calloc (); X X! IMPORT PART_ID memPartCreate (); X! IMPORT char *memPartAlloc (); X! IMPORT char *memPartRealloc (); X X #endif INCmemLibh X--- 81,105 ---- X X /* function declarations */ X X! IMPORT void *malloc (unsigned); X! IMPORT void *realloc (char *, unsigned); X! IMPORT void *calloc (unsigned, unsigned); X! IMPORT STATUS free(void *); X! IMPORT STATUS cfree(void *); X X! IMPORT PART_ID memPartCreate (char *, unsigned); X! IMPORT void memPartAddToPool(PART_ID, char *, unsigned); X! IMPORT void memPartOptionsSet(PART_ID, unsigned); X! IMPORT void memAddToPool(char *, unsigned); X! IMPORT int memFindMax(void); X! IMPORT void memInit(char *, unsigned); X! IMPORT void memOptionsSet(unsigned); X! IMPORT char *memPartAlloc(PART_ID, unsigned); X! IMPORT PART_ID memPartCreate(char *, unsigned); X! IMPORT int memPartFindMax(PART_ID); X! IMPORT STATUS memPartFree(PART_ID, char *); X! IMPORT char *memPartRealloc(PART_ID, char *, unsigned); X! IMPORT void memPartShow(PART_ID, int); X! IMPORT memShow(int); X X #endif INCmemLibh SHAR_EOF if test 1545 -ne "`wc -c memLib.h.patch`" then echo shar: error transmitting memLib.h.patch '(should have been 1545 characters)' fi echo shar: extracting nfsLib.h.patch '(1130 characters)' sed 's/^X//' << \SHAR_EOF > nfsLib.h.patch X*** ../old/nfsLib.h Tue Apr 3 14:13:27 1990 X--- nfsLib.h Tue Apr 3 14:08:58 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,22jan90,rekn ansi-fied. X 01d,09sep88,llk added NFS_TIMEOUT_SEC, NFS_TIMEOUT_USEC, NFS_SOCKOPTVAL. X 01c,26aug88,gae removed unused imports. X 01b,04jun88,llk moved FOLLOW_LINK, DEFAULT_FILE_PERM and DEFAULT_DIR_PERM X*************** X*** 82,86 **** X--- 83,103 ---- X #define NFS_TIMEOUT_SEC 25 X #define NFS_TIMEOUT_USEC 0 X #define NFS_SOCKOPTVAL 10000 X+ X+ /*functions 8/ X+ X+ IMPORT STATUS nfsAllUnmount(char *); X+ IMPORT void nfsAuthUnixGet(char *, int *, int *, int *, int *); X+ IMPORT void nfsAuthUnixPrompt(void); X+ IMPORT void nfsAuthUnixset(char *, int, int, int, int *); X+ IMPORT void nfsAuthUnixShow(void); X+ IMPORT void nfsDevShow(void); X+ IMPORT STATUS nfsDrv(void); X+ IMPORT STATUS nfsExportShow(char *); X+ IMPORT void nfsHelp(void); X+ IMPORT void nfsIdSet(int0; X+ IMPORT STATUS nfsMntDump(char *); X+ IMPORT STATUS nfsMount(char *, char *, char *); X+ IMPORT STATUS nfsUnmount(char *); X X #endif INCnfsLibh SHAR_EOF if test 1130 -ne "`wc -c nfsLib.h.patch`" then echo shar: error transmitting nfsLib.h.patch '(should have been 1130 characters)' fi echo shar: extracting remLib.h.patch '(887 characters)' sed 's/^X//' << \SHAR_EOF > remLib.h.patch X*** ../old/remLib.h Tue Apr 3 14:13:28 1990 X--- remLib.h Tue Apr 3 14:08:59 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,03apr90,rekn ANSI-fied. X 01e,28may88,dnw removed some status values to hostLib.h. X 01d,01nov87,llk added S_remLib_HOST_ALREADY_ENTERED. X 01c,10oct86,gae deleted S_remLib_DIRECTORY_NAME_TOO_BIG, not used anymore; X*************** X*** 23,27 **** X--- 24,36 ---- X #define S_remLib_ALL_PORTS_IN_USE (M_remLib | 1) X #define S_remLib_RSH_ERROR (M_remLib | 2) X #define S_remLib_IDENTITY_TOO_BIG (M_remLib | 3) X+ X+ /* Functions */ X+ IMPORT STATUS iam(char *, char *); X+ IMPORT int rcmd(char *, int, char *, char *, char *, int *); X+ IMPORT void remCurIdGet(char *, char *); X+ IMPORT STATUS remCurIdSet(char *, char *); X+ IMPORT int rresvport(int *); X+ IMPORT void whoami(void); X X #endif INCremLibh SHAR_EOF if test 887 -ne "`wc -c remLib.h.patch`" then echo shar: error transmitting remLib.h.patch '(should have been 887 characters)' fi echo shar: extracting rngLib.h.patch '(1043 characters)' sed 's/^X//' << \SHAR_EOF > rngLib.h.patch X*** ../old/rngLib.h Tue Apr 3 14:13:29 1990 X--- rngLib.h Tue Apr 3 14:08:59 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,22jan90,rekn ansi-fied. X 01e,22aug88,gae removed incorrect comment about using 'shorts' X for optimization. X 01d,30may88,dnw changed to v4 names. X*************** X*** 36,42 **** X X /* function declarations */ X X! RING_ID rngCreate (); X X X /**************************************************************** X--- 37,53 ---- X X /* function declarations */ X X! IMPORT int rngBufGet(RING_ID, char *, int); X! IMPORT int rngBufPut(RING_ID, char *, int); X! IMPORT RING_ID rngCreate(int); X! IMPORT void rngDelete(RING_ID); X! IMPORT void rngFlush(RING_ID); X! IMPORT int rngFreeBytes(RING_ID); X! IMPORT BOOL rngIsEmpty(RING_ID); X! IMPORT BOOL rngIsFull(RING_ID); X! IMPORT void rngMoveAhead(RING_ID, int); X! IMPORT int rngNBytes(RING_ID); X! IMPORT void rngPutAhead(RING_ID,char, int); X X X /**************************************************************** SHAR_EOF if test 1043 -ne "`wc -c rngLib.h.patch`" then echo shar: error transmitting rngLib.h.patch '(should have been 1043 characters)' fi # End of shell archive exit 0