add wrapper

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@4988 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas 2001-07-25 01:12:55 +00:00
parent b4ce91d839
commit df40ad1b7e

View File

@ -64,11 +64,13 @@ typedef enum
* assuming that all the other modern compilers are clean on this * assuming that all the other modern compilers are clean on this
* issue too. */ * issue too. */
#ifndef SWIG /* swig 1.1p5 can't hack the long long type */
struct timespec64 struct timespec64
{ {
long long int tv_sec; long long int tv_sec;
long int tv_nsec; long int tv_nsec;
}; };
#endif /* SWIG */
typedef struct timespec64 Timespec; typedef struct timespec64 Timespec;