diff options
Diffstat (limited to 'src/compat/setproctitle.c')
-rw-r--r-- | src/compat/setproctitle.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/compat/setproctitle.c b/src/compat/setproctitle.c new file mode 100644 index 0000000..c5e40ec --- /dev/null +++ b/src/compat/setproctitle.c @@ -0,0 +1,9 @@ +/* -*- mode: c; c-file-style: "openbsd" -*- */ + +#include "compat.h" + +void +setproctitle(const char *fmt, ...) +{ + /* Do nothing. */ +} |