summaryrefslogtreecommitdiffstats
path: root/BeOS
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-10-09 21:26:12 (GMT)
committerFred Drake <fdrake@acm.org>2000-10-09 21:26:12 (GMT)
commit95fdec4073be430933e3d2639235431985eea7e4 (patch)
tree30e0edfcd3af9a5ddf65815c762b4e91ba52f2a2 /BeOS
parent46446d6242fa44e01dd80e31e73fcc94332e990a (diff)
downloadcpython-95fdec4073be430933e3d2639235431985eea7e4.zip
cpython-95fdec4073be430933e3d2639235431985eea7e4.tar.gz
cpython-95fdec4073be430933e3d2639235431985eea7e4.tar.bz2
This file is no longer used.
Diffstat (limited to 'BeOS')
-rw-r--r--BeOS/dl_export.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/BeOS/dl_export.h b/BeOS/dl_export.h
deleted file mode 100644
index 5c1af8d..0000000
--- a/BeOS/dl_export.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef BEOS_DL_EXPORT_H
-#define BEOS_DL_EXPORT_H
-
-/* There are no declarations here, so no #ifdef __cplusplus...
- *
- * This is the nasty declaration decorations required by certain systems
- * (in our case, BeOS) for dynamic object loading.
- *
- * This trivial header is released under the same license as the rest of
- * Python.
- *
- * - Chris Herborth (chrish@beoscentral.com)
- * January 11, 1999
- */
-
-#ifndef DL_EXPORT
-# define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE
-#endif
-#ifndef DL_IMPORT
-# ifdef USE_DL_EXPORT
-# define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE
-# else
-# define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE
-# endif
-#endif
-
-#endif