We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aeb8d0d commit 8c1f6edCopy full SHA for 8c1f6ed
1 file changed
TargetLibraries/GAP9/src/Util.c
@@ -13,14 +13,7 @@
13
int deeploy_log(const char *__restrict fmt, ...) {
14
va_list args;
15
va_start(args, fmt);
16
- int ret;
17
-
18
-#if defined(AM_PART_APOLLO4B) | defined(DAM_PART_APOLLO3)
19
- ret = am_util_stdio_vprintf(fmt, args);
20
-#else
21
- ret = vprintf(fmt, args);
22
-#endif
23
+ int ret = vprintf(fmt, args);
24
va_end(args);
25
return ret;
26
}
0 commit comments