Changeset 3bf907a in mainline
- Timestamp:
- 2009-06-04T16:36:47Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4a68194
- Parents:
- 8bfe48e
- Location:
- uspace
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/bdd/bdd.c
r8bfe48e r3bf907a 29 29 #include <stdio.h> 30 30 #include <stdlib.h> 31 #include <string.h> 31 32 #include "config.h" 32 33 #include "util.h" -
uspace/app/bdsh/cmds/modules/kcon/kcon.c
r8bfe48e r3bf907a 32 32 #include <stdlib.h> 33 33 #include <io/console.h> 34 #include <vfs/vfs.h> 34 35 #include "config.h" 35 36 #include "util.h" -
uspace/app/bdsh/cmds/modules/mkdir/mkdir.c
r8bfe48e r3bf907a 38 38 #include <getopt.h> 39 39 #include <stdarg.h> 40 #include <string.h> 40 41 41 42 #include "config.h" -
uspace/app/bdsh/cmds/modules/pwd/pwd.c
r8bfe48e r3bf907a 31 31 #include <stdio.h> 32 32 #include <stdlib.h> 33 #include <mem.h> 33 34 34 35 #include "config.h" -
uspace/app/bdsh/cmds/modules/rm/rm.c
r8bfe48e r3bf907a 35 35 #include <dirent.h> 36 36 #include <getopt.h> 37 #include <mem.h> 38 #include <string.h> 37 39 38 40 #include "config.h" -
uspace/app/bdsh/input.c
r8bfe48e r3bf907a 36 36 #include <io/keycode.h> 37 37 #include <io/style.h> 38 #include <vfs/vfs.h> 38 39 #include <errno.h> 39 40 #include <bool.h> -
uspace/app/tester/console/console1.c
r8bfe48e r3bf907a 32 32 #include <io/color.h> 33 33 #include <io/style.h> 34 #include <vfs/vfs.h> 34 35 #include <async.h> 35 36 #include "../tester.h" -
uspace/app/trace/trace.c
r8bfe48e r3bf907a 42 42 #include <async.h> 43 43 #include <task.h> 44 #include <mem.h> 45 #include <string.h> 44 46 #include <loader/loader.h> 45 47 -
uspace/lib/libc/Makefile.toolchain
r8bfe48e r3bf907a 30 30 -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32 -finput-charset=UTF-8 \ 31 31 -fno-builtin -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes \ 32 - nostdlib -nostdinc -pipe -g32 -Werror-implicit-function-declaration -nostdlib -nostdinc -pipe -g 33 33 LFLAGS = -M -N $(SOFTINT_PREFIX)/libsoftint.a 34 34 AFLAGS = -
uspace/lib/libc/generic/mem.c
r8bfe48e r3bf907a 96 96 static void *unaligned_memcpy(void *dst, const void *src, size_t n) 97 97 { 98 unsigned int i, j;98 size_t i, j; 99 99 struct along *adst = dst; 100 100 const struct along *asrc = src; -
uspace/srv/ns/clonable.c
r8bfe48e r3bf907a 39 39 #include <stdio.h> 40 40 #include <malloc.h> 41 #include <loader/loader.h> 41 42 #include "clonable.h" 42 43 #include "ns.h" -
uspace/srv/ns/ns.c
r8bfe48e r3bf907a 46 46 #include <event.h> 47 47 #include <macros.h> 48 #include <sysinfo.h> 48 49 #include "ns.h" 49 50 #include "service.h"
Note:
See TracChangeset
for help on using the changeset viewer.