r11859: Canonicalize whitespace
[clsql.git] / uffi / ptrbits.c
1 /* Prints the number of bits in a pointer.
2  * Copyright (c) 2006 Kevin Rosenberg
3  */
4
5 #include <stdio.h>
6
7 int main() {
8   char *p;
9   printf ("%d\n", 8*sizeof(p));
10   return (0);
11 }