blob: df321a75faaf1dc87c94e249fa4c88bb88541212 [file] [log] [blame]
#include <stdlib.h>
int printf(const char * __restrict format, ...);
typedef struct {
int a;
int b;
} MYFILE;
int main()
{
MYFILE *myFile = malloc(sizeof(MYFILE));
myFile->a = 5;
myFile->b = 9;
printf("%d\n", myFile->a + myFile->b); // Set breakpoint 0 here.
free(myFile);
}