chiark / gitweb /
REORG Delete everything that's not innduct or build system or changed for innduct
[innduct.git] / include / portable / setproctitle.h
diff --git a/include/portable/setproctitle.h b/include/portable/setproctitle.h
deleted file mode 100644 (file)
index e15e591..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-/*  $Id: setproctitle.h 5682 2002-08-29 05:17:56Z rra $
-**
-**  Set things up for setproctitle portably.
-**
-**  If the system supports setproctitle, we need to define away
-**  setproctitle_init.  Otherwise, we have to prototype setproctitle (which is
-**  normally prototyped in stdlib.h).
-*/
-
-#ifndef PORTABLE_SETPROCTITLE_H
-#define PORTABLE_SETPROCTITLE_H 1
-
-#include "config.h"
-
-#if !HAVE_SETPROCTITLE
-void setproctitle(const char *format, ...);
-#endif
-
-#if HAVE_SETPROCTITLE || HAVE_PSTAT
-# define setproctitle_init(argc, argv)   /* empty */
-#else
-void setproctitle_init(int argc, char *argv[]);
-#endif
-
-#endif /* !PORTABLE_SETPROCTITLE_H */