diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-06-03 00:25:35 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-06-03 00:25:35 +0000 |
commit | 84fbe20b5bea3c87793775e587d85164f75e3d60 (patch) | |
tree | 9fd15cd0716258823a9944b8c6d3f9d6622f0012 | |
parent | cc0bb1ef3b42e4bfc67276c3c86d030a53e3a480 (diff) | |
download | guile-84fbe20b5bea3c87793775e587d85164f75e3d60.tar.gz |
* scmsigs.c (scm_segfaulr): Removed. (Was probably added by
mistake since it is not mentioned in ChangeLog.)
-rw-r--r-- | libguile/scmsigs.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/libguile/scmsigs.c b/libguile/scmsigs.c index 22a6e8966..58a673151 100644 --- a/libguile/scmsigs.c +++ b/libguile/scmsigs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc. +/* Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -458,15 +458,6 @@ SCM_DEFINE (scm_raise, "raise", 1, 0, 0, } #undef FUNC_NAME -SCM_PROC(s_segfault, "segfault", 0, 0, 0, scm_segfault); - -SCM -scm_segfault () -{ - *(int *)0 = 0; - return SCM_UNSPECIFIED; -} - void |