forked from SixTrack/sixtracklib
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
common: adds a stub version of the be_tricub/coefficients.h file
- Loading branch information
Martin Schwinzerl
committed
Nov 22, 2019
1 parent
862e087
commit 6dc3e5c
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
#ifndef SIXTRACKLIB_COMMON_BE_TRICUB_COEFFICIENTS_C99_H__ | ||
#define SIXTRACKLIB_COMMON_BE_TRICUB_COEFFICIENTS_C99_H__ | ||
|
||
/* | ||
#if !defined(SIXTRL_NO_SYSTEM_INCLUDES) | ||
#include <stddef.h> | ||
#include <math.h> | ||
#endif */ | ||
/* !defined(SIXTRL_NO_SYSTEM_INCLUDES) */ | ||
|
||
#if !defined(SIXTRL_NO_INCLUDES) | ||
#include "sixtracklib/common/definitions.h" | ||
#include "sixtracklib/common/be_tricub/be_tricub.h" | ||
#endif /* !defined(SIXTRL_NO_INCLUDES) */ | ||
|
||
#if !defined( _GPUCODE ) && defined( __cplusplus ) | ||
extern "C" { | ||
#endif /* !defined( _GPUCODE ) && defined( __cplusplus ) */ | ||
|
||
/* SUGGESTION: Up here only the signatures / declarations */ | ||
|
||
#if !defined( _GPUCODE ) && defined( __cplusplus ) | ||
} | ||
#endif /* !defined( _GPUCODE ) && defined( __cplusplus ) */ | ||
|
||
/* ************************************************************************* */ | ||
/* ************************************************************************* */ | ||
|
||
#if !defined( _GPUCODE ) && defined( __cplusplus ) | ||
extern "C" { | ||
#endif /* !defined( _GPUCODE ) && defined( __cplusplus ) */ | ||
|
||
/* SUGGESTION: Up here the inline declrations | ||
INLINE: SIXTRL_INLINE and SIXTRL_STATIC SIXTRL_FN above | ||
*/ | ||
|
||
#if !defined( _GPUCODE ) && defined( __cplusplus ) | ||
} | ||
#endif /* !defined( _GPUCODE ) && defined( __cplusplus ) */ | ||
|
||
#endif /* SIXTRACKLIB_COMMON_BE_TRICUB_COEFFICIENTS_C99_H__ */ | ||
|
||
|