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