* src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of setToNull()...
[fw/sdcc] / device / lib / _setjmp.c
index d8beecb28ab823fda1911a159faf6340aa12bf85..fb064a22bd536cc1ee74802a23dc86c7c49bb9ea 100644 (file)
@@ -25,7 +25,7 @@
 
 
 
-int longjmp (unsigned char _generic *bp, int rv)
+int longjmp (unsigned char *bp, int rv)
 {
     unsigned char lsp; 
     lsp = *(bp+2);
@@ -35,8 +35,8 @@ int longjmp (unsigned char _generic *bp, int rv)
     return rv;
 }
 
-int setjmp( unsigned char _generic *bp) {    
-  
+int setjmp (unsigned char *bp)
+{    
     /* registers would have been saved on the
        stack anyway so we need to save SP
        and the return address */     
@@ -44,5 +44,4 @@ int setjmp( unsigned char _generic *bp) {
     *bp++ = *((unsigned char data *)SP - 1);    
     *bp   = SP;
     return 0;
-       
 }