mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-02-09 18:36:56 +00:00
openbsd-compat/. And resolve all ./configure and Makefile.in issues assocated. Logic: * All OpenBSD functions should have the same filename as in the OpenBSD tree * All 'home brew' functions have bsd-* infront of them. * All 'not really implemented' functions have fake-* infront of them.
11 lines
186 B
C
11 lines
186 B
C
#ifndef _BSD_SETPROCTITLE_H
|
|
#define _BSD_SETPROCTITLE_H
|
|
|
|
#include "config.h"
|
|
|
|
#ifndef HAVE_SETPROCTITLE
|
|
void setproctitle(const char *fmt, ...);
|
|
#endif
|
|
|
|
#endif /* _BSD_SETPROCTITLE_H */
|