About: Source:NetHack 3.0.0/panic.c   Sponge Permalink

An Entity of Type : owl:Thing, within Data Space : 134.155.108.49:8890 associated with source dataset(s)

Below is the full text to panic.c from the source code of NetHack 3.0.0. To link to a particular line, write [[NetHack 3.0.0/panic.c#line123]], for example. Warning! This is the source code from an old release. For the latest release, see Source code

AttributesValues
rdfs:label
  • Source:NetHack 3.0.0/panic.c
rdfs:comment
  • Below is the full text to panic.c from the source code of NetHack 3.0.0. To link to a particular line, write [[NetHack 3.0.0/panic.c#line123]], for example. Warning! This is the source code from an old release. For the latest release, see Source code
dcterms:subject
dbkwik:nethack/pro...iPageUsesTemplate
abstract
  • Below is the full text to panic.c from the source code of NetHack 3.0.0. To link to a particular line, write [[NetHack 3.0.0/panic.c#line123]], for example. Warning! This is the source code from an old release. For the latest release, see Source code 1. /* SCCS Id: @(#)panic.c 3.0 88/05/03 2. * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. 3. * 4. * This code was adapted from the code in end.c to run in a standalone 5. * mode for the makedefs / drg code. 6. */ 7. /* NetHack may be freely redistributed. See license for details. */ 8. 9. #include "config.h" 10. 11. #ifdef MSDOS 12. #undef exit 13. extern void exit P((int)); 14. #endif 15. 16. /*VARARGS1*/ 17. boolean panicking; 18. 19. void 20. panic(str,a1,a2,a3,a4,a5,a6) 21. char *str; 22. { 23. if(panicking++) 24. #ifdef SYSV 25. (void) 26. #endif 27. abort(); /* avoid loops - this should never happen*/ 28. 29. (void) fputs(" ERROR: ", stderr); 30. Printf(str,a1,a2,a3,a4,a5,a6); 31. (void) fflush(stderr); 32. #ifdef UNIX 33. # ifdef SYSV 34. (void) 35. # endif 36. abort(); /* generate core dump */ 37. #endif 38. exit(1); /* redundant */ 39. return; 40. } 41.
Alternative Linked Data Views: ODE     Raw Data in: CXML | CSV | RDF ( N-Triples N3/Turtle JSON XML ) | OData ( Atom JSON ) | Microdata ( JSON HTML) | JSON-LD    About   
This material is Open Knowledge   W3C Semantic Web Technology [RDF Data] Valid XHTML + RDFa
OpenLink Virtuoso version 07.20.3217, on Linux (x86_64-pc-linux-gnu), Standard Edition
Data on this page belongs to its respective rights holders.
Virtuoso Faceted Browser Copyright © 2009-2012 OpenLink Software