1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 14:30:50 -08:00

Replaced all BSD with BSD_SYSTEM.

This commit is contained in:
Karl Heuer 1996-09-17 02:37:17 +00:00
parent 7c5a1541f3
commit e397a0172f
3 changed files with 7 additions and 7 deletions

View file

@ -259,7 +259,7 @@ main (argc, argv)
exit (1);
}
#ifdef BSD
#ifdef BSD_SYSTEM
cwd = getwd (string);
#else
cwd = getcwd (string, sizeof string);
@ -374,7 +374,7 @@ main (argc, argv)
}
/* Determine working dir, so we can prefix it to all the arguments. */
#ifdef BSD
#ifdef BSD_SYSTEM
temp = getwd (gwdirb);
#else
temp = getcwd (gwdirb, sizeof gwdirb);