diff options
| author | Louis Burda <quent.burda@gmail.com> | 2022-06-02 15:28:40 +0200 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2022-06-02 15:28:40 +0200 |
| commit | 5bc16063c29aa4d3d287ebd163ccdbcbf54c4f9f (patch) | |
| tree | c131f947a37b3af2d14d41e9eda098bdec2d061c /gbdk/gbdk-lib/include/stdarg.h | |
| parent | 78a5f810b22f0d8cafa05f638b0cb2e889824859 (diff) | |
| download | cscg2022-gearboy-master.tar.gz cscg2022-gearboy-master.zip | |
Diffstat (limited to 'gbdk/gbdk-lib/include/stdarg.h')
| -rw-r--r-- | gbdk/gbdk-lib/include/stdarg.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gbdk/gbdk-lib/include/stdarg.h b/gbdk/gbdk-lib/include/stdarg.h new file mode 100644 index 00000000..6c870bc8 --- /dev/null +++ b/gbdk/gbdk-lib/include/stdarg.h @@ -0,0 +1,12 @@ +#ifndef STDARG_INCLUDE +#define STDARG_INCLUDE + +#if defined(__PORT_sm83) +#include <asm/sm83/stdarg.h> +#elif defined(__PORT_z80) +#include <asm/z80/stdarg.h> +#else +#error Unrecognised port. +#endif + +#endif |
