]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/puts.c
Disable the IRQ before calling mouse_uninstall
[cc65] / libsrc / common / puts.c
index e3522c7b3171012632cdb2fe9fbf85504de96966..85b8cc315d3149592ef239c54fd0586cc6ee792e 100644 (file)
@@ -8,12 +8,18 @@
 
 #include <stdio.h>
 #include <string.h>
-#include <fcntl.h>
+#include <unistd.h>
 #include "_file.h"
 
 
 
-int puts (const char* s)
+/*****************************************************************************/
+/*                                          Code                                    */
+/*****************************************************************************/
+
+
+
+int __fastcall__ puts (const char* s)
 {
     static char nl = '\n';