| 41 |
#include <sysexits.h> |
#include <sysexits.h> |
| 42 |
/* assert */ |
/* assert */ |
| 43 |
#include <assert.h> |
#include <assert.h> |
| 44 |
|
/* waitpid */ |
| 45 |
|
#include <sys/wait.h> |
| 46 |
|
|
| 47 |
#ifdef __linux__ |
#ifdef __linux__ |
| 48 |
/* mtrace, muntrace */ |
/* mtrace, muntrace */ |
| 93 |
FILE *p; /* ...or an I/O stream */ |
FILE *p; /* ...or an I/O stream */ |
| 94 |
int i; /* ...or an integer */ |
int i; /* ...or an integer */ |
| 95 |
float f; /* ...or a floating point number */ |
float f; /* ...or a floating point number */ |
| 96 |
funcp func; /* ...or a function */ |
funcp func; /* ...or a function pointer */ |
| 97 |
char *string; /* ...or a string */ |
char *string; /* ...or a string */ |
| 98 |
} content; /* Stores a pointer or an integer */ |
} content; /* Stores a pointer or an integer */ |
| 99 |
|
|