]> git.pld-linux.org Git - packages/BitchX.git/blob - BitchX-types.patch
- use long as return type on 64-bit arch
[packages/BitchX.git] / BitchX-types.patch
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.075153 seconds and 3 git commands to generate.