diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-04-08 00:04:07 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-04-08 00:04:07 -0400 |
| commit | 7bbd819c8d2acbcc800f33644571b8d683924bb9 (patch) | |
| tree | 34986d65febec7f880b3752d55f7735b350d60d9 /src/nio.c | |
| parent | 112669a88b1104fb4ee0aa920f2016f76e5e7317 (diff) | |
| download | fujinet-chat-7bbd819c8d2acbcc800f33644571b8d683924bb9.tar.gz | |
Removed unneeded <stddef.h> from nio.c.
Diffstat (limited to 'src/nio.c')
| -rw-r--r-- | src/nio.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -6,7 +6,6 @@ use this as example code for writing your own fujinet app! */ #include <atari.h> -#include <stddef.h> #include "nio.h" #include "sio.h" #include "config.h" @@ -54,7 +53,7 @@ char nclose(void) { set_defaults(); OS.dcb.dcomnd = 'C'; // Close OS.dcb.dstats = 0x00; - OS.dcb.dbuf = NULL; + OS.dcb.dbuf = 0; OS.dcb.dbyt = 0; OS.dcb.daux = 0; siov(); |
