On Mon, 21 Oct 2002, Jason Tishler wrote: > Igor, > > On Sun, Oct 20, 2002 at 10:47:59PM -0400, Igor Pechtchanski wrote: > > --- ./src/mygdbm.h 2002-10-20 14:44:40.000000000 -0400 > > +++ ./src/mygdbm.h-orig 2002-10-20 14:44:35.000000000 -0400 > > The above seems to indicate a reverse patch. > Jason
Thanks, Jason. While this isn't something that 'patch -R' can't handle (or that patch itself wouldn't detect), I'm resubmitting the corrected patch anyway for the archives. Igor -- http://cs.nyu.edu/~pechtcha/ |\ _,,,---,,_ [EMAIL PROTECTED] ZZZzz /,`.-'`' -. ;-;;,_ [EMAIL PROTECTED] |,4- ) )-,_. ,\ ( `'-' Igor Pechtchanski '---''(_/--' `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-. Meow! "Water molecules expand as they grow warmer" (C) Popular Science, Oct'02, p.51
--- ./src/mygdbm.h-orig 2002-10-20 14:44:35.000000000 -0400 +++ ./src/mygdbm.h 2002-10-20 14:44:40.000000000 -0400 @@ -13,12 +13,12 @@ /* definitions copied from ndbm.h */ typedef struct {int dummy[10];} DBM; -extern GDBM_EXPORT(void, dbm_close) (); -extern GDBM_EXPORT(datum, dbm_fetch) (); -extern GDBM_EXPORT(int, dbm_store) (); -extern GDBM_EXPORT(int, dbm_delete) (); -extern GDBM_EXPORT(datum, dbm_firstkey) (); -extern GDBM_EXPORT(datum, dbm_nextkey) (); +extern void __cdecl dbm_close(); +extern datum __cdecl dbm_fetch(); +extern int __cdecl dbm_store(); +extern int __cdecl dbm_delete(); +extern datum __cdecl dbm_firstkey(); +extern datum __cdecl dbm_nextkey(); DBM * my_gdbm_open PROTO((char *file, int flags, int mode)); #endif /* USE_GDBM && !MY_NDBM */
-- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/