d32127e3d7
Place constants back inside namespace and add a test to make sure they are namespaced correctly.
14 lines
161 B
C
14 lines
161 B
C
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <stdbool.h>
|
|
|
|
#define FOO 10
|
|
|
|
#define ZOM 3.14
|
|
|
|
typedef struct Foo {
|
|
int32_t x[FOO];
|
|
} Foo;
|
|
|
|
void root(Foo x);
|