mes/libc
Jan Nieuwenhuizen 6af7556d51 mescc: C99 header files and declaraions.
* libc/include/assert.h (assert_fail):
* libc/include/stdio.h:
+int eputs (char const* s);
+int fputs (char const* s);
+int puts (char const* s);
+int putchar (int c);
+int fputc (int c, int fd);
+int getchar ();
* libc/include/stdlib.h:
+char* getenv (char const* s)
+int atoi (char const *s);
+int *malloc (size_t);
+int *realloc (int *p, int size);
* libc/include/unistd.h (access):
* src/lib.c (display_helper):
* src/mes.c (read_input_file_env):
* src/posix.c: Include unistd.h.
2017-05-23 07:16:08 +02:00
..
include mescc: C99 header files and declaraions. 2017-05-23 07:16:08 +02:00
libc-gcc.c mescc: C99 header files and declaraions. 2017-05-23 07:16:08 +02:00
libc-mes.c mescc: C99 header files and declaraions. 2017-05-23 07:16:08 +02:00
mini-libc-mes.c mescc: Refactor mlibc compilation. 2017-05-21 22:25:02 +02:00