Cloned SEACAS for EXODUS library with extra build files for internal package management.
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.
 
 
 
 
 
 

81 lines
2.1 KiB

/*
* Copyright(C) 1999-2020, 2022 National Technology & Engineering Solutions
* of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
* NTESS, the U.S. Government retains certain rights in this software.
*
* See packages/seacas/LICENSE for details
*/
/* ifdefx.h - ifdef file for cgi shell routines
* This file is used to define the system dependent ways C is
* called from FORTRAN. Underscores are used by default.
*
* SUN DEC/ULTRIX ALLIANT : C routines must have underscores
* SGI CONVEX : C routines must have underscores
*
* VAX HP IBM/aix : C routines do not have underscores
*
* CRAY/UNICOS : C routines must be capitalized,
* and no underscores
*
* This include file is used by MDCGI.C and all CGISxxx.C files.
*/
#pragma once
#if defined(ADDC_)
#endif
#if !defined(CRA) && !defined(ADDC_) && !defined(COUGAR)
#define xcoon_ xcoon
#define xcooff_ xcooff
#define xcact_ xcact
#define xcdact_ xcdact
#define xcsol_ xcsol
#define cgia60_ cgia60
#define cgi16c_ cgi16c
#define cgi35c_ cgi35c
#define cgi810_ cgi810
#define cgi48l_ cgi48l
#define cgi24l_ cgi24l
#define cgi35a_ cgi35a
#define cgimet_ cgimet
#define cginws_ cginws
#define cgipst_ cgipst
#define cgiqms_ cgiqms
#define cgit05_ cgit05
#define cgit07_ cgit07
#define cgit15_ cgit15
#define cgitk4_ cgitk4
#define cgiv34_ cgiv34
#define cgix11_ cgix11
#define cgihcb_ cgihcb
#define cgif8t_ cgif8t
#define cgif3c_ cgif3c
#define cgifsq_ cgifsq
#endif
#if defined(CRA)
#define xcoon_ XCOON
#define xcooff_ XCOOFF
#define xcact_ XCACT
#define xcdact_ XCDACT
#define xcsol_ XCSOL
#define cgi16c_ CGI16C
#define cgi35c_ CGI35C
#define cgi48l_ CGI48L
#define cgi24l_ CGI24L
#define cgi35a_ CGI35A
#define cgi810_ CGI810
#define cgia60_ CGIA60
#define cgimet_ CGIMET
#define cginws_ CGINWS
#define cgipst_ CGIPST
#define cgiqms_ CGIQMS
#define cgit05_ CGIT05
#define cgit07_ CGIT07
#define cgit15_ CGIT15
#define cgitk4_ CGITK4
#define cgiv34_ CGIV34
#define cgix11_ CGIX11
#define cgihcb_ CGIHCB
#define cgif8t_ CGIF8T
#define cgif3c_ CGIF3C
#define cgifsq_ CGIFSQ
#endif