MCPcopy Create free account
hub / github.com/NetHack/NetHack / VA_DECL

Function VA_DECL

sys/amiga/amiwind.c:900–912  ·  view source on GitHub ↗

fatal error */ VARARGS1*/

Source from the content-addressed store, hash-verified

898/* fatal error */
899/*VARARGS1*/
900void error
901VA_DECL(const char *, s)
902{
903 VA_START(s);
904 VA_INIT(s, char *);
905
906 putchar('\n');
907 vprintf(s, VA_ARGS);
908 putchar('\n');
909
910 VA_END();
911 Abort(0L);
912}
913#endif

Callers

nothing calls this directly

Calls 2

vprintfFunction · 0.85
AbortFunction · 0.85

Tested by

no test coverage detected