summaryrefslogtreecommitdiffstats
path: root/osdep-openbsd.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-04-29 23:07:35 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-04-29 23:07:35 +0000
commit91241f1457d2391f2885761d5df423eb7a4d893e (patch)
treeae5ed8c06fed1f1809c0a9d26a4a1f18f2287b8c /osdep-openbsd.c
parentce989a91d1c713300503b4631f29fbf456561701 (diff)
Apply the make magic wand to pick an osdep-*.c file rather than using ifdefs.
Diffstat (limited to 'osdep-openbsd.c')
-rw-r--r--osdep-openbsd.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/osdep-openbsd.c b/osdep-openbsd.c
index 6657a464..243018f2 100644
--- a/osdep-openbsd.c
+++ b/osdep-openbsd.c
@@ -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