ARMEBS4  revision-26.06.2015
syscalls_minimal_cpp.c
1 #include <stdlib.h>
2 #include <stdio.h>
3 #include <errno.h>
4 #include <time.h>
5 #include <sys/stat.h>
6 
7 int _getpid()
8 {
9  return 1;
10 }
11 
12 int _kill(int pid, int sig)
13 {
14  errno = EINVAL;
15  return (-1);
16 }
simple time abstraction