Changeset 7ab6fc2 in mainline for uspace/app
- Timestamp:
- 2011-04-09T19:15:26Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 40ef3ed
- Parents:
- 2e08dce7
- Location:
- uspace/app/pcc/cc/cpp
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/pcc/cc/cpp/Makefile
r2e08dce7 r7ab6fc2 27 27 # 28 28 29 # TODO: prefer libcompat headers to libc30 31 29 ARCH = i386 # FIXME: figure out the real arch 32 30 33 31 USPACE_PREFIX = ../../../.. 34 LIBS = $(LIBCOMPAT_PREFIX)/libcompat.a35 32 MIPDIR = ../../mip 36 33 ARCHDIR = ../../arch/$(ARCH) 37 EXTRA_CFLAGS = -I$( LIBCOMPAT_PREFIX) -I$(MIPDIR) -I$(ARCHDIR)34 EXTRA_CFLAGS = -I$(MIPDIR) -I$(ARCHDIR) 38 35 EXTRA_CLEAN = y.tab.c y.tab.h 39 36 DEFS = -DCPP_DEBUG -Dfree=free -DCPPBUF=16384 40 37 BINARY = cpp 38 39 POSIX_COMPAT = 1 41 40 42 41 YACC = yacc -
uspace/app/pcc/cc/cpp/cpp.c
r2e08dce7 r7ab6fc2 37 37 #include <sys/wait.h> 38 38 #endif 39 #include < compat/sys/stat.h>39 #include <sys/stat.h> 40 40 41 41 #include <fcntl.h> 42 42 #ifdef HAVE_UNISTD_H 43 #include < compat/unistd.h>43 #include <unistd.h> 44 44 #endif 45 45 #include <stdio.h> … … 47 47 #include <stdlib.h> 48 48 #include <string.h> 49 #include < compat/time.h>49 #include <time.h> 50 50 #include <ctype.h> 51 51 -
uspace/app/pcc/cc/cpp/token.c
r2e08dce7 r7ab6fc2 45 45 #include <stdlib.h> 46 46 #include <string.h> 47 #include <c ompat/ctype.h>47 #include <ctype.h> 48 48 #ifdef HAVE_UNISTD_H 49 49 #include <unistd.h>
Note:
See TracChangeset
for help on using the changeset viewer.
