7 lines
148 B
C
7 lines
148 B
C
#include "cdef.h"
|
|
#ifndef CDEF_BASE
|
|
#define CDEF_BASE 1
|
|
#endif
|
|
int cdef_value(void) { return CDEF_BASE; }
|
|
int cdef_doubled(int x) { return x * 2; }
|