Revision: 14517 Author: adrian.chadd Date: Tue Mar 30 20:00:54 2010 Log: Issue #94 - drand.h related stuff for win32 platforms
http://code.google.com/p/lusca-cache/source/detail?r=14517 Added: /branches/LUSCA_HEAD/include/drand48.h Modified: /branches/LUSCA_HEAD/libiapp/event.c ======================================= --- /dev/null +++ /branches/LUSCA_HEAD/include/drand48.h Tue Mar 30 20:00:54 2010 @@ -0,0 +1,8 @@ +#ifndef __INCLUDE_DRAND48_H__ +#define __INCLUDE_DRAND48_H__ + +#if !HAVE_DRAND48 +double drand48(void); +#endif + +#endif ======================================= --- /branches/LUSCA_HEAD/libiapp/event.c Wed Jun 4 23:07:53 2008 +++ /branches/LUSCA_HEAD/libiapp/event.c Tue Mar 30 20:00:54 2010 @@ -43,6 +43,10 @@ #include "../include/Array.h" #include "../include/Stack.h" +#if !HAVE_DRAND48 +#include "../util/drand48.h" +#endif + #include "../libcore/valgrind.h" #include "../libcore/varargs.h" #include "../libcore/debug.h" -- You received this message because you are subscribed to the Google Groups "lusca-commit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/lusca-commit?hl=en.
