summaryrefslogtreecommitdiff
path: root/bsd-setproctitle.h
diff options
context:
space:
mode:
authorKevin Steves <stevesk@pobox.com>2000-10-18 13:11:44 +0000
committerKevin Steves <stevesk@pobox.com>2000-10-18 13:11:44 +0000
commit8848b249ff1f6059271480c4abcedc9a3762f9c6 (patch)
tree4f9aa337e0103370532d5511cc1f7ca1bddfe40b /bsd-setproctitle.h
parentb5628647ad1e48d026064e5acc0d8dc0b8021cfa (diff)
- (stevesk) Add initial support for setproctitle(). Current
support is for the HP-UX pstat(PSTAT_SETCMD, ...) method.
Diffstat (limited to 'bsd-setproctitle.h')
-rw-r--r--bsd-setproctitle.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/bsd-setproctitle.h b/bsd-setproctitle.h
new file mode 100644
index 000000000..000689fac
--- /dev/null
+++ b/bsd-setproctitle.h
@@ -0,0 +1,10 @@
1#ifndef _BSD_SETPROCTITLE_H
2#define _BSD_SETPROCTITLE_H
3
4#include "config.h"
5
6#ifndef HAVE_SETPROCTITLE
7void setproctitle(const char *fmt, ...);
8#endif
9
10#endif /* _BSD_SETPROCTITLE_H */