*** empty log message ***

This commit is contained in:
François Pinard
1994-11-16 02:49:10 +00:00
parent edac55a3b9
commit f9a11075d9
3 changed files with 23 additions and 12 deletions
+2 -1
View File
@@ -126,9 +126,10 @@ read_dir_file()
time(&this_time);
if(gnu_dumpfile[0]!='/') {
#if defined(__MSDOS__) || defined(USG) || defined(_POSIX_VERSION)
if(!getcwd(path,PATH_MAX))
if(!getcwd(path,PATH_MAX)) {
msg("Couldn't get current directory.");
exit(EX_SYSTEM);
}
#else
char *getwd();
+6
View File
@@ -98,6 +98,12 @@ typedef long off_t;
#if !defined(__MSDOS__) && !defined(STDC_HEADERS)
#include <memory.h>
#endif
#ifdef index
#undef index
#endif
#ifdef rindex
#undef rindex
#endif
#define index strchr
#define rindex strrchr
#define bcopy(s, d, n) memcpy(d, s, n)