
. get rid of includes in libcompat_minix: . move configfile.h to minix/include/ . all others are unneeded as they point to other files . merge the .c files with libc Change-Id: I5e840c66fb9bc484f377926aa9d66473bbd16259
12 lines
177 B
C
12 lines
177 B
C
#include <lib.h>
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
void std_err(const char *s)
|
|
{
|
|
register const char *p = s;
|
|
|
|
while (*p != 0) p++;
|
|
write(2, s, (int) (p - s));
|
|
}
|