From bdae10bee2ec613e8765235ba17f3383693e3d73 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Tue, 8 Mar 2016 01:22:13 -0800 Subject: Move file I/O related functions out of nasmlib.c nasmlib.[ch] desperately need to be broken up into smaller chunks. Break file I/O related functions out into file.c, so at least we can avoid the problem with P_WAIT being defined in on Windows but is also used as a prefix constant in "nasm.h". Signed-off-by: H. Peter Anvin --- rdoff/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rdoff') diff --git a/rdoff/Makefile.in b/rdoff/Makefile.in index 41fc5f1a..7efcc542 100644 --- a/rdoff/Makefile.in +++ b/rdoff/Makefile.in @@ -32,7 +32,7 @@ MKDIR = mkdir LDRDFLIBS = rdoff.$(O) symtab.$(O) collectn.$(O) \ rdlib.$(O) segtab.$(O) hash.$(O) RDXLIBS = rdoff.$(O) rdfload.$(O) symtab.$(O) collectn.$(O) hash.$(O) -NASMLIB = ../nasmlib.$(O) +NASMLIB = ../nasmlib.$(O) ../file.$(O) # Binary suffixes O = @OBJEXT@ -- cgit v1.2.1