dmd/compiler/test/runnable/extra-files/importc_test.c
2022-07-09 18:53:07 +02:00

8 lines
156 B
C

#define __extension__ /* remove keyword from preprocessed code. */
#include <stdint.h>
uint32_t someCodeInC(uint32_t a, uint32_t b)
{
return a + b;
}