* config/tc-arm.c (arm_cpus): Add entry for ARM Cortex-M0.
[binutils-gdb.git] / gdb / testsuite / gdb.base / opaque1.c
blobc34f7aaaae12766b6061107ab531d4395227ed2e
1 struct foo {
2 int a;
3 int b;
4 } afoo = { 1, 2};
6 struct foo *getfoo ()
8 return (&afoo);
11 #ifdef PROTOTYPES
12 void putfoo (struct foo *foop)
13 #else
14 void putfoo (foop)
15 struct foo *foop;
16 #endif