openldap/include/ac/setproctitle.h

19 lines
349 B
C
Raw Normal View History

1998-11-03 20:36:44 -05:00
/* Generic setproctitle.h */
#ifndef _AC_SETPROCTITLE_H
#define _AC_SETPROCTITLE_H
#ifdef LDAP_PROCTITLE
#if defined( HAVE_LIBUTIL_H )
# include <libutil.h>
#else
/* use lutil version */
void setproctitle LDAP_P((const char *fmt, ...));
extern int Argc;
extern char **Argv;
#endif
#endif /* LDAP_PROCTITLE */
#endif /* _AC_SETPROCTITLE_H */