mirror of
https://gitlab.com/openconnect/ocserv.git
synced 2026-02-10 16:57:00 +08:00
19 lines
250 B
C
19 lines
250 B
C
#ifndef SETPROCTITLE_H
|
|
# define SETPROCTITLE_H
|
|
|
|
# include <config.h>
|
|
|
|
# ifndef HAVE_SETPROCTILE
|
|
|
|
void __attribute__ ((format(printf, 1, 2)))
|
|
setproctitle(const char *fmt, ...);
|
|
|
|
# else
|
|
|
|
# include <sys/types.h>
|
|
# include <unistd.h>
|
|
|
|
# endif
|
|
|
|
#endif
|