* src/SDCC.y: enabled compilation of empty source file
[fw/sdcc] / device / lib / _startup.c
index ab2d4d58cc6a4e5d0f8a9fc7f1d63de4ee2d9c33..0f9995d9ce44a3922addcf58e222f09ad57f7588 100644 (file)
@@ -1,5 +1,5 @@
 /*-------------------------------------------------------------------------
-  _startup.c - startup routine for sdcc 
+  _startup.c - startup routine for sdcc
 
              Written By -  Sandeep Dutta . sandeep.dutta@usa.net (1999)
 
@@ -7,19 +7,19 @@
    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 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 Library General Public License for more details.
-   
+
    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.
-   
+
    In other words, you are welcome to use, share and improve this program.
    You are forbidden to forbid anyone else to use, share and improve
-   what you give them.   Help stamp out software-hoarding!  
+   what you give them.   Help stamp out software-hoarding!
 -------------------------------------------------------------------------*/
 
 /* External startup code can be written in C
@@ -34,5 +34,9 @@ unsigned char _sdcc_external_startup ()
     return 0;
 }
 
-#endif
+#else
+
+/* Disable "ISO C forbids an empty source file" wraning message */
+#pragma disable_warning 190
 
+#endif