diff options
author | Thomas Bushnell <thomas@gnu.org> | 1997-07-09 18:58:01 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1997-07-09 18:58:01 +0000 |
commit | abf8316de7f2050585ffa00848dd803775f2ea54 (patch) | |
tree | 10827c115c1efb41fc2421a8f08d371acc7e3477 | |
parent | f881a47ca2e589a19f47c89d23ea01f3e69b427b (diff) |
Mon Jul 7 16:25:49 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* boot.c: Include <fcntl.h> instead of <fcntlbits.h>. Suggested
by Marcus G. Daniels (marcus@cathcart.sysc.pdx.edu).
-rw-r--r-- | boot/ChangeLog | 5 | ||||
-rw-r--r-- | boot/boot.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/boot/ChangeLog b/boot/ChangeLog index fd915038..f15f8868 100644 --- a/boot/ChangeLog +++ b/boot/ChangeLog @@ -3,6 +3,11 @@ * boot_script.c (prompt_resume_task): Pass more than a single character buffer to safe_gets. +Mon Jul 7 16:25:49 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> + + * boot.c: Include <fcntl.h> instead of <fcntlbits.h>. Suggested + by Marcus G. Daniels (marcus@cathcart.sysc.pdx.edu). + 1997-06-20 Miles Bader <miles@gnu.ai.mit.edu> * boot.c (bootscript): Made global. diff --git a/boot/boot.c b/boot/boot.c index b92761d6..7ed6804e 100644 --- a/boot/boot.c +++ b/boot/boot.c @@ -30,7 +30,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <string.h> #include <stdio.h> #include <cthreads.h> -#include <fcntlbits.h> +#include <fcntl.h> #include <elf.h> #include <mach/mig_support.h> #include <mach/default_pager.h> |