]> git.sur5r.net Git - cc65/blobdiff - libsrc/apple2/iobuf.s
Fixed gcc compiler warning (#867)
[cc65] / libsrc / apple2 / iobuf.s
index fc412c241e973ca135f76ef18e1868c2c3e8295d..77433ce616729e6cf4c318871712f4b8d2d89546 100644 (file)
@@ -4,12 +4,8 @@
 ; Default ProDOS 8 I/O buffer management
 ; 
 
-        .export                iobuf_alloc, iobuf_free
-        .export                iobuf_init,  iobuf_done
-        .import                iobuf_nop
-        .import                _posix_memalign, _free
+        .export         iobuf_alloc, iobuf_free
+        .import         _posix_memalign, _free
 
 iobuf_alloc := _posix_memalign
 iobuf_free  := _free
-iobuf_init  := iobuf_nop
-iobuf_done  := iobuf_nop