pr25749-1.c 299 B

123456789101112131415161718
  1. #include <stdio.h>
  2. #include <stdint.h>
  3. extern intptr_t size (void);
  4. int
  5. main ()
  6. {
  7. if (size () == 299 /* size of this file */)
  8. printf ("PASS\n");
  9. #ifdef __GLIBC_PREREQ
  10. # if !__GLIBC_PREREQ (2, 28)
  11. else
  12. printf ("PASS (incorrect result due to glibc bug)\n");
  13. # endif
  14. #endif
  15. return 0;
  16. }