https://github.com/cran/RandomFields
Revision b48f5ce0f26d7d1830b8ddd4486fc720c37ae510 authored by Martin Schlather on 14 November 2005, 00:00:00 UTC, committed by Gabor Csardi on 14 November 2005, 00:00:00 UTC
1 parent 61bd8f8
Raw File
Tip revision: b48f5ce0f26d7d1830b8ddd4486fc720c37ae510 authored by Martin Schlather on 14 November 2005, 00:00:00 UTC
version 1.3.10
Tip revision: b48f5ce
win_linux_aux.h

#ifndef WIN_LINUX_AUX_H
#define WIN_LINUX_AUX_H 1

extern "C" void sleepMilli(int *milli);
extern "C" void pid(int *i);
extern "C" void hostname(char **h, int *i);

#ifdef WIN32 
#define SINCOS(phi, e0, e1) e0 = sin(phi); e1 = cos(phi);
#else
#define SINCOS(phi, e0, e1) sincos(phi, &(e0), &(e1));
#endif

#endif /* WIN_LINUX_AUX_H */


back to top