diff options
| author | krasimir <krasimir@chalmers.se> | 2017-04-19 12:30:40 +0000 |
|---|---|---|
| committer | krasimir <krasimir@chalmers.se> | 2017-04-19 12:30:40 +0000 |
| commit | 5c93f2fba5eadaa1e516106c08d495c14a0eb647 (patch) | |
| tree | e0d2a925cc0f3c0d8ec4bac0668fb42b2a64babe /src/runtime/c/gu/assert.h | |
| parent | 74ce52d761de9bc49fbb1aaf2d273d3edc34a3d6 (diff) | |
in libgu mark explicitly all functions that belong to the API
Diffstat (limited to 'src/runtime/c/gu/assert.h')
| -rw-r--r-- | src/runtime/c/gu/assert.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/runtime/c/gu/assert.h b/src/runtime/c/gu/assert.h index 9d7ecc15f..a49d64748 100644 --- a/src/runtime/c/gu/assert.h +++ b/src/runtime/c/gu/assert.h @@ -10,12 +10,12 @@ typedef enum { GU_ASSERT_NEVER } GuAssertMode; -void +GU_API_DECL void gu_abort_v_(GuAssertMode mode, const char* file, const char* func, int line, const char* msg_fmt, va_list args); -void +GU_API_DECL void gu_abort_(GuAssertMode mode, const char* file, const char* func, int line, const char* msg_fmt, ...); @@ -55,7 +55,7 @@ gu_abort_(GuAssertMode mode, #define gu_impossible() \ gu_impossible_msg(NULL) -void +GU_API_DECL void gu_fatal(const char* fmt, ...); #endif /* GU_ASSERT_H_ */ |
