- Rename helper.[ch] to (more appropriate) bsd-misc.[ch]

This commit is contained in:
Damien Miller 1999-12-30 01:29:35 +11:00
parent 58ca7d8503
commit 753331ee5e
2 changed files with 5 additions and 5 deletions

View File

@ -48,7 +48,7 @@
#include "xmalloc.h"
#include "ssh.h"
#include "config.h"
#include "helper.h"
#include "bsd-misc.h"
#ifndef offsetof
#define offsetof(type, member) ((size_t) &((type *)0)->member)

View File

@ -1,6 +1,6 @@
/*
**
** OpenBSD emulation routines
** OpenBSD replacement routines
**
** Damien Miller <djm@ibs.com.au>
**
@ -33,8 +33,8 @@
**
*/
#ifndef _HELPER_H
#define _HELPER_H
#ifndef _BSD_MISC_H
#define _BSD_MISC_H
#include "config.h"
@ -51,4 +51,4 @@ void setproctitle(const char *fmt, ...);
int setenv(const char *name, const char *value, int overwrite);
#endif /* !HAVE_SETENV */
#endif /* _HELPER_H */
#endif /* _BSD_MISC_H */