C++: Fix CWE-022

This commit is contained in:
Calum Grant
2024-10-18 19:45:29 +01:00
parent 0fcabc4e61
commit c5a082fd8e

View File

@@ -17,3 +17,4 @@ void *malloc(size_t size);
double strtod(const char *ptr, char **endptr);
char *getenv(const char *name);
ssize_t read(int fd, void *buffer, size_t count);
int snprintf(char *s, size_t n, const char *format, ...);