]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/gets.c
The spans do now contain the size of a span, no longer the end offset.
[cc65] / libsrc / common / gets.c
index b9dd0017041e8cd37fb027672ff850cd373a3ac8..377e0ba537b4bf7055006cd62108088a7808a4a2 100644 (file)
 
 
 
-char* gets (char* s)
+/*****************************************************************************/
+/*                                          Code                                    */
+/*****************************************************************************/
+
+
+
+char* __fastcall__ gets (char* s)
 {
     int c;
     int i = 0;
@@ -49,3 +55,4 @@ char* gets (char* s)
 
 
 
+