mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-24 16:04:40 +08:00
16 lines
360 B
C
16 lines
360 B
C
|
#define XSTRINGIFY(s) #s
|
||
|
#define STRINGIFY(s) XSTRINGIFY(s)
|
||
|
|
||
|
static const char*
|
||
|
gettopsrcdir(void)
|
||
|
{
|
||
|
const char* topsrcdir;
|
||
|
topsrcdir = STRINGIFY(TOPSRCDIR);
|
||
|
if(topsrcdir == NULL) {
|
||
|
fprintf(stderr,"*** FAIL: $abs_top_srcdir not defined\n");
|
||
|
exit(1);
|
||
|
}
|
||
|
fprintf(stderr,"topsrcdir=%s\n",topsrcdir);
|
||
|
return topsrcdir;
|
||
|
}
|