xref: /petsc/include/petscsys.h (revision d5bc1036675f4b812457cd4a97ce5e27072faa1a)
1 /* $Id: sys.h,v 1.9 1995/11/09 22:33:28 bsmith Exp bsmith $ */
2 /*
3     Provides access to a small number of system related and general utility routines.
4 */
5 #if !defined(__SYS_PACKAGE)
6 #define __SYS_PACKAGE
7 
8 extern int    SYGetArchType(char*,int);
9 extern int    SYIsort(int,int*);
10 extern int    SYIsortperm(int,int*,int*);
11 extern int    SYDsort(int,double*);
12 extern char   *SYGetDate();
13 extern int    TrDebugLevel(int);
14 extern int    TrValid();
15 #endif
16 
17