https://github.com/root-project/root
Raw File
Tip revision: b021ae86a45df12d6cad5f1793090c8c98ac49fd authored by Rene Brun on 30 June 2009, 07:26:56 UTC
Tagging production version v5-24-00
Tip revision: b021ae8
unistd.h
/* -*- C++ -*- */
/*************************************************************************
 * Copyright(c) 1995~2005  Masaharu Goto (cint@pcroot.cern.ch)
 *
 * For the licensing terms see the file COPYING
 *
 ************************************************************************/
/****************************************************************
* unistd.h
*****************************************************************/
#ifndef G__UNISTD_H
#define G__UNISTD_H

#pragma include_noerr <systypes.h>

#ifndef G__TESTMAIN

/* NOTE: posix.dl is not generated by default. 
 * Goto $CINTSYSDIR/lib/posix directory and do 'sh setup' if you use UNIX. */
#ifndef G__POSIX_H
#pragma include_noerr "posix.dll"
#endif

#ifndef __MAKECINT__
#pragma ifndef G__POSIX_H /* G__POSIX_H is defined in posix.dl */
#pragma message Note: posix.dll is not found. Do 'sh setup' in $CINTSYSDIR/lib/posix directory if you use UNIX.
#pragma endif
#endif

#endif /* G__TESTMAIN */

#endif
back to top