You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
532 B

/*==============================================================================
Copyright (c) 2003-2005 UGS Corporation
Unpublished - All Rights Reserved
==============================================================================*/
/**
@file
An include file to handle system dependencies for the stat.h file
*/
/* */
#ifdef VMS
#include <stat.h>
#endif
#ifdef SUN
#include <sys/types.h>
#endif
#ifdef SGI
#include <sys/types.h>
#endif
#ifdef UNX
#include <sys/stat.h>
#endif