Changes in / [d948095:be1dcc26] in mainline
- Location:
- uspace
- Files:
-
- 48 added
- 50 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile.common
rd948095 rbe1dcc26 227 227 228 228 ifeq ($(POSIX_COMPAT),y) 229 CFLAGS = -I$(LIBPOSIX_PREFIX) /include/posix -I$(LIBPOSIX_PREFIX)/include/229 CFLAGS = -I$(LIBPOSIX_PREFIX) 230 230 LIBS += $(LIBPOSIX_PREFIX)/libposix.a 231 231 endif -
uspace/app/msim/arch_helenos/input.c
rd948095 rbe1dcc26 32 32 /** @file HelenOS specific functions for MSIM simulator. 33 33 */ 34 35 /* Because of asprintf. */36 #define _GNU_SOURCE37 34 #include "../../io/input.h" 38 35 #include "../../io/output.h" … … 41 38 #include <tinput.h> 42 39 #include <errno.h> 43 #include <stdlib.h>44 40 45 41 static tinput_t *input_prompt; -
uspace/app/msim/arch_helenos/misc.c
rd948095 rbe1dcc26 44 44 #include <ctype.h> 45 45 #include <stdio.h> 46 #include <stdlib.h>47 46 48 47 /* Define when the dprinter device shall try to filter -
uspace/lib/posix/Makefile
rd948095 rbe1dcc26 33 33 LSONAME = libposix.so0 34 34 35 EXTRA_CFLAGS = -Iinclude/ 36 37 INCLUDE_LIBC = ./include/libc 35 INCLUDE_LIBC = ./libc 38 36 39 37 PRE_DEPEND = $(INCLUDE_LIBC) … … 41 39 42 40 SOURCES = \ 43 source/ctype.c \44 source/errno.c \45 source/fcntl.c \46 source/fnmatch.c \47 source/getopt.c \48 source/locale.c \49 source/math.c \50 source/pwd.c \51 s ource/signal.c \52 s ource/stdio.c \53 s ource/stdio/scanf.c \54 s ource/stdlib.c \55 s ource/stdlib/strtol.c \56 s ource/stdlib/strtold.c \57 s ource/string.c \58 s ource/strings.c \59 s ource/sys/stat.c \60 s ource/sys/wait.c \61 source/time.c \62 source/unistd.c41 ctype.c \ 42 errno.c \ 43 fcntl.c \ 44 fnmatch.c \ 45 getopt.c \ 46 locale.c \ 47 math.c \ 48 pwd.c \ 49 signal.c \ 50 stdio.c \ 51 stdio/scanf.c \ 52 stdlib.c \ 53 stdlib/strtol.c \ 54 stdlib/strtold.c \ 55 string.c \ 56 strings.c \ 57 sys/stat.c \ 58 sys/wait.c \ 59 time.c \ 60 unistd.c 63 61 64 62 include $(USPACE_PREFIX)/Makefile.common 65 63 66 64 $(INCLUDE_LIBC): ../c/include 67 ln -s -f -n ../$^ $@65 ln -s -f -n $^ $@
Note:
See TracChangeset
for help on using the changeset viewer.