mirror of
https://github.com/moparisthebest/FireTray
synced 2024-11-11 11:35:09 -05:00
15 lines
398 B
C
15 lines
398 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#include <X11/Xlib.h>
|
||
|
#include <X11/Xmd.h>
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
|
printf("sizeof(int)=%d\n",sizeof(int));
|
||
|
printf("sizeof(long)=%d\n",sizeof(long));
|
||
|
printf("sizeof(CARD32)=%d\n",sizeof(CARD32));
|
||
|
printf("sizeof(Atom)=%d\n",sizeof(Atom)); /* supposed to be CARD32 */
|
||
|
printf("sizeof(Window)=%d\n",sizeof(Window));
|
||
|
return(EXIT_SUCCESS);
|
||
|
}
|