mirror of
https://github.com/vgough/encfs.git
synced 2024-11-21 15:33:16 +01:00
17 lines
209 B
C
17 lines
209 B
C
#ifdef __STDC__
|
|
#include <limits.h>
|
|
#else
|
|
#include <assert.h>
|
|
#endif
|
|
|
|
int
|
|
main()
|
|
{
|
|
#if defined ${CHECK_STUB_FUNC_1} || defined ${CHECK_STUB_FUNC_2}
|
|
return 0;
|
|
#else
|
|
this system have stub
|
|
return 0;
|
|
#endif
|
|
}
|