]> git.pld-linux.org Git - packages/BitchX.git/blame - BitchX-types.patch
- use long as return type on 64-bit arch
[packages/BitchX.git] / BitchX-types.patch
CommitLineData
1f42384b
JB
1--- BitchX/include/module.h.orig 2003-04-11 03:09:07.000000000 +0200
2+++ BitchX/include/module.h 2004-06-18 12:18:28.000000000 +0200
3@@ -15,7 +15,11 @@
4
5 #include "struct.h"
6
7+#if defined(__alpha__) || defined(__x86_64__) || defined(__ia64__)
8+typedef long (*Function_ptr)();
9+#else
10 typedef int (*Function_ptr)();
11+#endif
12
13 #ifdef WANT_DLL
14 #ifdef HPUX
This page took 0.026439 seconds and 4 git commands to generate.