Apply the make magic wand to pick an osdep-*.c file rather than using ifdefs.

This commit is contained in:
Nicholas Marriott
2009-04-29 23:07:35 +00:00
parent ce989a91d1
commit 91241f1457
8 changed files with 16 additions and 38 deletions

View File

@ -1,4 +1,4 @@
/* $Id: osdep-openbsd.c,v 1.14 2009-02-17 18:54:14 nicm Exp $ */
/* $Id: osdep-openbsd.c,v 1.15 2009-04-29 23:07:35 nicm Exp $ */
/*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@ -16,8 +16,6 @@
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifdef __OpenBSD__
#include <sys/param.h>
#include <sys/sysctl.h>
#include <sys/stat.h>
@ -130,5 +128,3 @@ retry:
free(buf);
return (name);
}
#endif