mirror of
https://github.com/EnergyMech/energymech.git
synced 2025-12-17 07:26:21 +00:00
11 lines
161 B
C
11 lines
161 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
int main(int argc, char **argv)
|
|
{
|
|
printf("%i\n",sizeof(void*));
|
|
return(0);
|
|
}
|
|
|