mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-12-19 00:24:35 +00:00
13 lines
249 B
C
13 lines
249 B
C
/* $Id: setproctitle.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
|
|
|
|
#ifndef _BSD_SETPROCTITLE_H
|
|
#define _BSD_SETPROCTITLE_H
|
|
|
|
#include "config.h"
|
|
|
|
#ifndef HAVE_SETPROCTITLE
|
|
void setproctitle(const char *fmt, ...);
|
|
#endif
|
|
|
|
#endif /* _BSD_SETPROCTITLE_H */
|