├── Makefile ├── README ├── arm ├── bits.s ├── lmem.s ├── start.s ├── string.s └── syscall.s ├── arpa └── inet.h ├── atoi.c ├── ctype.c ├── ctype.h ├── dirent.c ├── dirent.h ├── elf.h ├── errno.c ├── errno.h ├── fcntl.h ├── inttypes.h ├── isatty.c ├── limits.h ├── linux ├── fb.h ├── types.h └── vt.h ├── localtime.c ├── malloc.c ├── memtst.c ├── mkstemp.c ├── poll.h ├── pwd.h ├── qsort.c ├── rand.c ├── regex.c ├── regex.h ├── scanf.c ├── setjmp.h ├── signal.c ├── signal.h ├── stdarg.c ├── stdarg.h ├── stddef.h ├── stdint.h ├── stdio.c ├── stdio.h ├── stdlib.c ├── stdlib.h ├── strftime.c ├── string.c ├── string.h ├── stringc.c ├── sys ├── ioctl.h ├── mman.h ├── socket.h ├── stat.h ├── time.h ├── types.h ├── un.h └── wait.h ├── termios.c ├── termios.h ├── time.h ├── unistd.c ├── unistd.h ├── utime.h ├── x64 ├── bits.s ├── lmem.s ├── memtst.s ├── setjmp.s ├── start.s ├── string.s └── syscall.s └── x86 ├── bits.s ├── lmem.s ├── memtst.s ├── setjmp.s ├── start.s ├── string.s └── syscall.s /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/README -------------------------------------------------------------------------------- /arm/bits.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/arm/bits.s -------------------------------------------------------------------------------- /arm/lmem.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/arm/lmem.s -------------------------------------------------------------------------------- /arm/start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/arm/start.s -------------------------------------------------------------------------------- /arm/string.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/arm/string.s -------------------------------------------------------------------------------- /arm/syscall.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/arm/syscall.s -------------------------------------------------------------------------------- /arpa/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/arpa/inet.h -------------------------------------------------------------------------------- /atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/atoi.c -------------------------------------------------------------------------------- /ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/ctype.c -------------------------------------------------------------------------------- /ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/ctype.h -------------------------------------------------------------------------------- /dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/dirent.c -------------------------------------------------------------------------------- /dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/dirent.h -------------------------------------------------------------------------------- /elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/elf.h -------------------------------------------------------------------------------- /errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/errno.c -------------------------------------------------------------------------------- /errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/errno.h -------------------------------------------------------------------------------- /fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/fcntl.h -------------------------------------------------------------------------------- /inttypes.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/isatty.c -------------------------------------------------------------------------------- /limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/limits.h -------------------------------------------------------------------------------- /linux/fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/linux/fb.h -------------------------------------------------------------------------------- /linux/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/linux/types.h -------------------------------------------------------------------------------- /linux/vt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/linux/vt.h -------------------------------------------------------------------------------- /localtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/localtime.c -------------------------------------------------------------------------------- /malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/malloc.c -------------------------------------------------------------------------------- /memtst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/memtst.c -------------------------------------------------------------------------------- /mkstemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/mkstemp.c -------------------------------------------------------------------------------- /poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/poll.h -------------------------------------------------------------------------------- /pwd.h: -------------------------------------------------------------------------------- 1 | /* to be filled in later */ 2 | -------------------------------------------------------------------------------- /qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/qsort.c -------------------------------------------------------------------------------- /rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/rand.c -------------------------------------------------------------------------------- /regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/regex.c -------------------------------------------------------------------------------- /regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/regex.h -------------------------------------------------------------------------------- /scanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/scanf.c -------------------------------------------------------------------------------- /setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/setjmp.h -------------------------------------------------------------------------------- /signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/signal.c -------------------------------------------------------------------------------- /signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/signal.h -------------------------------------------------------------------------------- /stdarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/stdarg.c -------------------------------------------------------------------------------- /stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/stdarg.h -------------------------------------------------------------------------------- /stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/stddef.h -------------------------------------------------------------------------------- /stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/stdint.h -------------------------------------------------------------------------------- /stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/stdio.c -------------------------------------------------------------------------------- /stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/stdio.h -------------------------------------------------------------------------------- /stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/stdlib.c -------------------------------------------------------------------------------- /stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/stdlib.h -------------------------------------------------------------------------------- /strftime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/strftime.c -------------------------------------------------------------------------------- /string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/string.c -------------------------------------------------------------------------------- /string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/string.h -------------------------------------------------------------------------------- /stringc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/stringc.c -------------------------------------------------------------------------------- /sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/sys/ioctl.h -------------------------------------------------------------------------------- /sys/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/sys/mman.h -------------------------------------------------------------------------------- /sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/sys/socket.h -------------------------------------------------------------------------------- /sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/sys/stat.h -------------------------------------------------------------------------------- /sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/sys/time.h -------------------------------------------------------------------------------- /sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/sys/types.h -------------------------------------------------------------------------------- /sys/un.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/sys/un.h -------------------------------------------------------------------------------- /sys/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/sys/wait.h -------------------------------------------------------------------------------- /termios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/termios.c -------------------------------------------------------------------------------- /termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/termios.h -------------------------------------------------------------------------------- /time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/time.h -------------------------------------------------------------------------------- /unistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/unistd.c -------------------------------------------------------------------------------- /unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/unistd.h -------------------------------------------------------------------------------- /utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/utime.h -------------------------------------------------------------------------------- /x64/bits.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/x64/bits.s -------------------------------------------------------------------------------- /x64/lmem.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/x64/lmem.s -------------------------------------------------------------------------------- /x64/memtst.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/x64/memtst.s -------------------------------------------------------------------------------- /x64/setjmp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/x64/setjmp.s -------------------------------------------------------------------------------- /x64/start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/x64/start.s -------------------------------------------------------------------------------- /x64/string.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/x64/string.s -------------------------------------------------------------------------------- /x64/syscall.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/x64/syscall.s -------------------------------------------------------------------------------- /x86/bits.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/x86/bits.s -------------------------------------------------------------------------------- /x86/lmem.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/x86/lmem.s -------------------------------------------------------------------------------- /x86/memtst.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/x86/memtst.s -------------------------------------------------------------------------------- /x86/setjmp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/x86/setjmp.s -------------------------------------------------------------------------------- /x86/start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/x86/start.s -------------------------------------------------------------------------------- /x86/string.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/x86/string.s -------------------------------------------------------------------------------- /x86/syscall.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligrudi/neatlibc/HEAD/x86/syscall.s --------------------------------------------------------------------------------