summaryrefslogtreecommitdiff
path: root/src/stream_template.c
diff options
context:
space:
mode:
authorakuchling <akuchling@rivest.dlitz.net>2002-04-30 18:47:53 -0700
committerakuchling <akuchling@rivest.dlitz.net>2002-04-30 18:47:53 -0700
commit373bb39bdecfaf9ec46a5e1d1e422888a0b23395 (patch)
tree63c5566bd0be10bf58246b57deb212c2c03e5e95 /src/stream_template.c
parent808f4561d4be1d4c5327ada7e0d4a1749324745b (diff)
downloadpycrypto-373bb39bdecfaf9ec46a5e1d1e422888a0b23395.tar.gz
[project @ akuchling-20020501014753-baa0da8f765d1210]
[project @ 2002-04-30 18:47:53 by akuchling] Remove inline declaration from C functions
Diffstat (limited to 'src/stream_template.c')
-rw-r--r--src/stream_template.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/stream_template.c b/src/stream_template.c
index 7007a55..cea8257 100644
--- a/src/stream_template.c
+++ b/src/stream_template.c
@@ -23,13 +23,6 @@
#include "Python.h"
#include "modsupport.h"
-#ifdef __GNUC__
-#define inline __inline__
-#else
-#define inline
-#endif
-
-
/* Endianness testing and definitions */
#define TestEndianness(variable) {int i=1; variable=PCT_BIG_ENDIAN;\
if (*((char*)&i)==1) variable=PCT_LITTLE_ENDIAN;}