chiark / gitweb /
buf: Fix two embarassing bugs found while writing Lisp bindings.
[mLib] / lock.c
diff --git a/lock.c b/lock.c
index ad223eee8ac6249488972e88d132e6e4b160d632..437ad10a3e23170f47ed383a649545a99ac12891 100644 (file)
--- a/lock.c
+++ b/lock.c
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: lock.c,v 1.4 1999/06/19 20:33:16 mdw Exp $
+ * $Id: lock.c,v 1.6 2004/04/08 01:36:13 mdw Exp $
  *
  * Simplified POSIX locking interface
  *
  * MA 02111-1307, USA.
  */
 
-/*----- Revision history --------------------------------------------------*
- *
- * $Log: lock.c,v $
- * Revision 1.4  1999/06/19 20:33:16  mdw
- * More sophisticated and excessive signal and alarm handling.
- *
- * Revision 1.3  1999/06/06 01:23:00  mdw
- * Fix signal handling.
- *
- * Revision 1.2  1999/05/26 20:53:40  mdw
- * Fixes for stupid bugs.
- *
- * Revision 1.1  1999/05/15 10:33:53  mdw
- * Add simplified locking code.
- *
- */
-
 /*----- Header files ------------------------------------------------------*/
 
 #include <errno.h>
@@ -66,7 +49,7 @@
 
 /*----- Static variables --------------------------------------------------*/
 
-static sigjmp_buf jmp;                 /* Jump here to interrup @fcntl@ */
+static jmp_buf jmp;                    /* Jump here to interrup @fcntl@ */
 
 /*----- Main code ---------------------------------------------------------*/