Very first cut at a klibc-derived C library for com32
authorhpa <hpa>
Wed, 10 Nov 2004 22:31:50 +0000 (22:31 +0000)
committerhpa <hpa>
Wed, 10 Nov 2004 22:31:50 +0000 (22:31 +0000)
commit17f967640cef484f83d755c9dd016a946711236f
tree00bf0c0f2926cd6a9761eb372b55d090305aca44
parentc67a2ac96611fa6aeb9ff3602c5e0c8265f1cc9d
Very first cut at a klibc-derived C library for com32
117 files changed:
com32/Makefile [new file with mode: 0644]
com32/include/bitsize/limits.h [new file with mode: 0644]
com32/include/bitsize/stddef.h [new file with mode: 0644]
com32/include/bitsize/stdint.h [new file with mode: 0644]
com32/include/bitsize/stdintconst.h [new file with mode: 0644]
com32/include/bitsize/stdintlimits.h [new file with mode: 0644]
com32/include/com32.h
com32/include/ctype.h [new file with mode: 0644]
com32/include/errno.h [new file with mode: 0644]
com32/include/inttypes.h [new file with mode: 0644]
com32/include/klibc/compiler.h [new file with mode: 0644]
com32/include/klibc/extern.h [new file with mode: 0644]
com32/include/klibc/sysconfig.h [new file with mode: 0644]
com32/include/limits.h [new file with mode: 0644]
com32/include/malloc.h [new file with mode: 0644]
com32/include/minmax.h [new file with mode: 0644]
com32/include/stdarg.h [new file with mode: 0644]
com32/include/stddef.h [new file with mode: 0644]
com32/include/stdio.h [new file with mode: 0644]
com32/include/stdlib.h [new file with mode: 0644]
com32/include/string.h [new file with mode: 0644]
com32/include/sys/cpu.h [new file with mode: 0644]
com32/include/sys/io.h [new file with mode: 0644]
com32/include/sys/pci.h [new file with mode: 0644]
com32/include/sys/types.h [new file with mode: 0644]
com32/lib/MCONFIG [new file with mode: 0644]
com32/lib/Makefile [new file with mode: 0644]
com32/lib/abort.c [new file with mode: 0644]
com32/lib/atexit.c [new file with mode: 0644]
com32/lib/atexit.h [new file with mode: 0644]
com32/lib/atoi.c [new file with mode: 0644]
com32/lib/atol.c [new file with mode: 0644]
com32/lib/atoll.c [new file with mode: 0644]
com32/lib/atox.c [new file with mode: 0644]
com32/lib/calloc.c [new file with mode: 0644]
com32/lib/creat.c [new file with mode: 0644]
com32/lib/ctypes.c [new file with mode: 0644]
com32/lib/errno.c [new file with mode: 0644]
com32/lib/exit.c [new file with mode: 0644]
com32/lib/fgetc.c [new file with mode: 0644]
com32/lib/fgets.c [new file with mode: 0644]
com32/lib/fopen.c [new file with mode: 0644]
com32/lib/fprintf.c [new file with mode: 0644]
com32/lib/fputc.c [new file with mode: 0644]
com32/lib/fputs.c [new file with mode: 0644]
com32/lib/fread.c [new file with mode: 0644]
com32/lib/fread2.c [new file with mode: 0644]
com32/lib/free.c [new file with mode: 0644]
com32/lib/fwrite.c [new file with mode: 0644]
com32/lib/fwrite2.c [new file with mode: 0644]
com32/lib/getopt.c [new file with mode: 0644]
com32/lib/init.h [new file with mode: 0644]
com32/lib/lrand48.c [new file with mode: 0644]
com32/lib/malloc.c [new file with mode: 0644]
com32/lib/memccpy.c [new file with mode: 0644]
com32/lib/memchr.c [new file with mode: 0644]
com32/lib/memcmp.c [new file with mode: 0644]
com32/lib/memcpy.c [new file with mode: 0644]
com32/lib/memmem.c [new file with mode: 0644]
com32/lib/memmove.c [new file with mode: 0644]
com32/lib/memset.c [new file with mode: 0644]
com32/lib/memswap.c [new file with mode: 0644]
com32/lib/onexit.c [new file with mode: 0644]
com32/lib/perror.c [new file with mode: 0644]
com32/lib/printf.c [new file with mode: 0644]
com32/lib/puts.c [new file with mode: 0644]
com32/lib/qsort.c [new file with mode: 0644]
com32/lib/realloc.c [new file with mode: 0644]
com32/lib/seed48.c [new file with mode: 0644]
com32/lib/setjmp.S [new file with mode: 0644]
com32/lib/snprintf.c [new file with mode: 0644]
com32/lib/sprintf.c [new file with mode: 0644]
com32/lib/srand48.c [new file with mode: 0644]
com32/lib/sscanf.c [new file with mode: 0644]
com32/lib/stack.c [new file with mode: 0644]
com32/lib/strcasecmp.c [new file with mode: 0644]
com32/lib/strcat.c [new file with mode: 0644]
com32/lib/strchr.c [new file with mode: 0644]
com32/lib/strcmp.c [new file with mode: 0644]
com32/lib/strcpy.c [new file with mode: 0644]
com32/lib/strdup.c [new file with mode: 0644]
com32/lib/strerror.c [new file with mode: 0644]
com32/lib/strlen.c [new file with mode: 0644]
com32/lib/strncasecmp.c [new file with mode: 0644]
com32/lib/strncat.c [new file with mode: 0644]
com32/lib/strncmp.c [new file with mode: 0644]
com32/lib/strncpy.c [new file with mode: 0644]
com32/lib/strndup.c [new file with mode: 0644]
com32/lib/strntoimax.c [new file with mode: 0644]
com32/lib/strntoumax.c [new file with mode: 0644]
com32/lib/strrchr.c [new file with mode: 0644]
com32/lib/strsep.c [new file with mode: 0644]
com32/lib/strspn.c [new file with mode: 0644]
com32/lib/strstr.c [new file with mode: 0644]
com32/lib/strtoimax.c [new file with mode: 0644]
com32/lib/strtok.c [new file with mode: 0644]
com32/lib/strtol.c [new file with mode: 0644]
com32/lib/strtoll.c [new file with mode: 0644]
com32/lib/strtoul.c [new file with mode: 0644]
com32/lib/strtoull.c [new file with mode: 0644]
com32/lib/strtoumax.c [new file with mode: 0644]
com32/lib/strtox.c [new file with mode: 0644]
com32/lib/sys/close.c [new file with mode: 0644]
com32/lib/sys/entry.S [new file with mode: 0644]
com32/lib/sys/exit.S [new file with mode: 0644]
com32/lib/sys/file.h [new file with mode: 0644]
com32/lib/sys/fileinfo.c [new file with mode: 0644]
com32/lib/sys/open.c [new file with mode: 0644]
com32/lib/sys/read.c [new file with mode: 0644]
com32/lib/sys/write.c [new file with mode: 0644]
com32/lib/vfprintf.c [new file with mode: 0644]
com32/lib/vprintf.c [new file with mode: 0644]
com32/lib/vsnprintf.c [new file with mode: 0644]
com32/lib/vsprintf.c [new file with mode: 0644]
com32/lib/vsscanf.c [new file with mode: 0644]
com32/modules/Makefile [new file with mode: 0644]
com32/modules/hello.c [new file with mode: 0644]