blob: 249d80fd1696f6e269ab54eebf6df1f9ef126602 [file] [log] [blame]
#include <stdio.h>
#include <stdint.h>
extern intptr_t size (void);
int
main ()
{
if (size () == 299 /* size of this file */)
printf ("PASS\n");
#ifdef __GLIBC_PREREQ
# if !__GLIBC_PREREQ (2, 28)
else
printf ("PASS (incorrect result due to glibc bug)\n");
# endif
#endif
return 0;
}