]> git.sur5r.net Git - openldap/blob - include/ac/setproctitle.h
Update copyright of build environment, includes, and liblber/libldap.
[openldap] / include / ac / setproctitle.h
1 /* Generic setproctitle.h */
2 /*
3  * Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms are permitted only
7  * as authorized by the OpenLDAP Public License.  A copy of this
8  * license is available at http://www.OpenLDAP.org/license.html or
9  * in file LICENSE in the top-level directory of the distribution.
10  */
11
12 #ifndef _AC_SETPROCTITLE_H
13 #define _AC_SETPROCTITLE_H
14
15 #ifdef LDAP_PROCTITLE
16
17 #if defined( HAVE_LIBUTIL_H )
18 #       include <libutil.h>
19 #else
20         /* use lutil version */
21         void setproctitle LDAP_P((const char *fmt, ...));
22         extern int Argc;
23         extern char **Argv;
24 #endif
25
26 #endif /* LDAP_PROCTITLE */
27 #endif /* _AC_SETPROCTITLE_H */