Remove longjmp declaration.

This commit is contained in:
grog 1999-03-28 08:53:46 +00:00
parent 5ff03966cd
commit a3698a7bf4
2 changed files with 2 additions and 14 deletions

View File

@ -33,7 +33,7 @@
* otherwise) arising in any way out of the use of this software, even if
* advised of the possibility of such damage.
*
* $Id: vinumio.c,v 1.21 1998/12/30 06:04:31 grog Exp grog $
* $Id: vinumio.c,v 1.24 1999/03/23 02:00:52 grog Exp grog $
*/
#define STATIC /* nothing while we're testing XXX */
@ -45,12 +45,6 @@
#include <dev/vinum/request.h>
#include <miscfs/specfs/specdev.h>
extern jmp_buf command_fail; /* return on a failed command */
/* Why aren't these declared anywhere? XXX */
int setjmp(jmp_buf);
void longjmp(jmp_buf, int);
static char *sappend(char *txt, char *s);
static int drivecmp(const void *va, const void *vb);

View File

@ -37,7 +37,7 @@
* otherwise) arising in any way out of the use of this software, even if
* advised of the possibility of such damage.
*
* $Id: vinumioctl.c,v 1.7 1999/01/18 03:36:17 grog Exp grog $
* $Id: vinumioctl.c,v 1.8 1999/03/23 02:46:39 grog Exp grog $
*/
#define STATIC /* nothing while we're testing XXX */
@ -51,12 +51,6 @@
#include <sys/reboot.h>
#endif
jmp_buf command_fail; /* return on a failed command */
/* Why aren't these declared anywhere? XXX */
int setjmp(jmp_buf);
void longjmp(jmp_buf, int);
void attachobject(struct vinum_ioctl_msg *);
void detachobject(struct vinum_ioctl_msg *);
void renameobject(struct vinum_rename_msg *);