summaryrefslogtreecommitdiff
path: root/src/include/port/openbsd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/port/openbsd.h')
-rw-r--r--src/include/port/openbsd.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/include/port/openbsd.h b/src/include/port/openbsd.h
deleted file mode 100644
index 7729fa5b9bb..00000000000
--- a/src/include/port/openbsd.h
+++ /dev/null
@@ -1,48 +0,0 @@
-#if defined(__i386__)
-#define NEED_I386_TAS_ASM
-#define HAS_TEST_AND_SET
-typedef unsigned char slock_t;
-#endif
-
-#if defined(__sparc__)
-#define NEED_SPARC_TAS_ASM
-#define HAS_TEST_AND_SET
-typedef unsigned char slock_t;
-#endif
-
-#if defined(__vax__)
-#define NEED_VAX_TAS_ASM
-#define HAS_TEST_AND_SET
-typedef unsigned char slock_t;
-#endif
-
-#if defined(__ns32k__)
-#define NEED_NS32K_TAS_ASM
-#define HAS_TEST_AND_SET
-typedef unsigned char slock_t;
-#endif
-
-#if defined(__m68k__)
-#define HAS_TEST_AND_SET
-typedef unsigned char slock_t;
-#endif
-
-#if defined(__arm__)
-#define HAS_TEST_AND_SET
-typedef unsigned char slock_t;
-#endif
-
-#if defined(__mips__)
-/* # undef HAS_TEST_AND_SET */
-#endif
-
-#if defined(__alpha__)
-#define HAS_TEST_AND_SET
-typedef unsigned long slock_t;
-#endif
-
-#if defined(__powerpc__)
-#define HAS_TEST_AND_SET
-typedef unsigned int slock_t;
-
-#endif