diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-08-24 22:54:28 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-08-24 22:54:28 +0900 |
| commit | 39031e84952db7d1f981c2c748558aacffc0a3e4 (patch) | |
| tree | c3db5c1c9e7572dc1314493b29c94e912af313a4 /include/stdarg.h | |
| parent | 6b064525a34f1989a928597e9878466b2a8222e5 (diff) | |
| download | ducc-39031e84952db7d1f981c2c748558aacffc0a3e4.tar.gz ducc-39031e84952db7d1f981c2c748558aacffc0a3e4.tar.zst ducc-39031e84952db7d1f981c2c748558aacffc0a3e4.zip | |
feat: add include guard
Diffstat (limited to 'include/stdarg.h')
| -rw-r--r-- | include/stdarg.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/stdarg.h b/include/stdarg.h index bdc4101..9995ae0 100644 --- a/include/stdarg.h +++ b/include/stdarg.h @@ -1,3 +1,6 @@ +#ifndef __DUCC_BUILTIN___STDARG_H__ +#define __DUCC_BUILTIN___STDARG_H__ + // System V Application Binary Interface // AMD64 Architecture Processor Supplement // (With LP64 and ILP32 Programming Models) @@ -19,3 +22,5 @@ typedef struct __ducc_va_list* va_list; void va_end(va_list args) { } + +#endif |
