summaryrefslogtreecommitdiff
path: root/src/sysdeps/trysizeofulong.c
blob: f2f21b1dc806a8ed1a616e1924f28c851835b153 (plain)
1
2
3
4
5
6
7
#include <stdio.h>

int main (void)
{
  printf("%u\n", (unsigned int)sizeof(unsigned long)) ;
  return 0 ;
}