first commit

This commit is contained in:
2022-10-09 16:38:09 +02:00
commit d1a66ad987
13 changed files with 451 additions and 0 deletions

12
include/vscode_fix.h Normal file
View File

@ -0,0 +1,12 @@
/*
Used to get VS Code Intellisense working correctly for header definitions
protected by compiler-specific feature flags.
*/
#ifdef __GNUC__
#define _ATTRIBUTE(attrs) __attribute__ (attrs)
#else
#define _ATTRIBUTE(attrs)
#endif
int iprintf (const char *, ...)
_ATTRIBUTE ((__format__ (__printf__, 1, 2)));