6283d58d564cb5c6754e857a72c15e9ceaea860a kent Thu Apr 4 19:29:45 2013 -0700 Adding makeSymLink diff --git src/inc/portable.h src/inc/portable.h index 3369683..93357ca 100644 --- src/inc/portable.h +++ src/inc/portable.h @@ -138,17 +138,20 @@ time_t fileModTime(char *pathName); /* Return file last modification time. The units of * these may vary from OS to OS, but you can depend on * later files having a larger time. */ boolean isPipe(int fd); /* determine in an open file is a pipe */ boolean maybeTouchFile(char *fileName); /* If file exists, set its access and mod times to now. If it doesn't exist, create it. * Return FALSE if we have a problem doing so. */ boolean isRegularFile(char *fileName); /* Return TRUE if fileName is a regular file. */ + +void makeSymLink(char *oldName, char *newName); +/* Return a symbolic link from newName to oldName or die trying */ #endif /* PORTABLE_H */