gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for fundef:panic (0.04 seconds)
t2ex
bsd_source/t2ex/network/net/src_bsd/sys/systm.h - 18.1KB - 562 lines
253: /* When debug option is unset, simple cause memory violation to cause system down */
254: #define panic(...) do { *((int*)NULL) = 0; } while(0)
255: #endif /* !DEBUG */
256: #else /* !T2EX */
257: void    panic(const char *, ...)
258:     __dead __attribute__((__format__(__printf__,1,2)));