aboutsummaryrefslogtreecommitdiffstats
path: root/src/sysdeps/trygetexecname.c
blob: 909a108b0aa7fcc41935e1b26603b9094b514324 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* ISC license. */

#undef _POSIX_C_SOURCE
#undef _XOPEN_SOURCE

#ifndef __EXTENSIONS__
#define __EXTENSIONS__
#endif

#include <stdlib.h>

int main (void)
{
  return !!getexecname() ;
}