]> git.gag.com Git - fw/sdcc/blobdiff - device/lib/_mulint.c
Changed _xdata, _near, etc and removed _generic from library files
[fw/sdcc] / device / lib / _mulint.c
index db7ba2da56c970a85465ec62da6fec50f69524a3..fa18440878d2f5d09581a73be7d3e7d9d95a71cc 100644 (file)
@@ -1,20 +1,19 @@
 /*-------------------------------------------------------------------------
-
   _mulint.c :- routine for (unsigned) int (16 bit) multiplication               
 
              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.
    
@@ -208,11 +207,11 @@ unsigned int
 _muluint (unsigned int a, unsigned int b)      // in future: _mulint
 {
 #ifdef SDCC_MODEL_LARGE                // still needed for large + stack-auto
-       union uu _xdata *x;
-       union uu _xdata *y; 
+       union uu xdata *x;
+       union uu xdata *y; 
        union uu t;
-        x = (union uu _xdata *)&a;
-        y = (union uu _xdata *)&b;
+        x = (union uu xdata *)&a;
+        y = (union uu xdata *)&b;
 #else
        register union uu *x;
        register union uu *y;