20 lines
288 B
C
Executable File
20 lines
288 B
C
Executable File
/* Includes */
|
|
#include <sys/stat.h>
|
|
#include <stdlib.h>
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <signal.h>
|
|
#include <time.h>
|
|
#include <sys/time.h>
|
|
#include <sys/times.h>
|
|
|
|
|
|
/* Functions */
|
|
void initialise_monitor_handles() {
|
|
}
|
|
|
|
int _getpid(void) {
|
|
return 1;
|
|
}
|
|
|