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

#undef _POSIX_C_SOURCE
#undef _XOPEN_SOURCE

#include <stdlib.h>

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