Changed _xdata, _near, etc and removed _generic from library files
[fw/sdcc] / device / lib / _strpbrk.c
index 6152783d18fdd63a5363a82fd4823ae6931f4032..9938438afb65c22417dc434e036dfb795c675eb2 100644 (file)
@@ -3,17 +3,17 @@
 
              Written By -  Sandeep Dutta . sandeep.dutta@usa.net (1999)
 
-   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 the
+   This library is free software; you can redistribute it and/or modify it
+   under the terms of the GNU Library General Public License as published by the
    Free Software Foundation; either version 2, or (at your option) any
    later version.
    
-   This program is distributed in the hope that it will be useful,
+   This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-   GNU General Public License for more details.
+   GNU Library General Public License for more details.
    
-   You should have received a copy of the GNU General Public License
+   You should have received a copy of the GNU Library General Public License
    along with this program; if not, write to the Free Software
    Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
    
@@ -24,9 +24,9 @@
 #include "string.h" 
 #define NULL (void *)0
 
-char _generic *strpbrk ( 
-       char _generic *string ,
-       char _generic *control
+char strpbrk ( 
+       char string ,
+       char control
                       ) 
 {
        register char ch ;