diff options
author | Freya Murphy <freya@freyacat.org> | 2025-04-28 11:07:15 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-04-28 11:07:15 -0400 |
commit | 55beb3f2985c9fda15f015320d1b9c723c97fbe0 (patch) | |
tree | 2caa9f56ac2d16cf3d6865473888ba9ecf50cafc /user/include | |
parent | seperate interrupt stack (diff) | |
download | comus-55beb3f2985c9fda15f015320d1b9c723c97fbe0.tar.gz comus-55beb3f2985c9fda15f015320d1b9c723c97fbe0.tar.bz2 comus-55beb3f2985c9fda15f015320d1b9c723c97fbe0.zip |
add stderr
Diffstat (limited to 'user/include')
-rw-r--r-- | user/include/stdio.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/user/include/stdio.h b/user/include/stdio.h index 2e2abf4..fe29c9d 100644 --- a/user/include/stdio.h +++ b/user/include/stdio.h @@ -23,8 +23,10 @@ typedef void FILE; extern FILE *stdin; extern FILE *stdout; +extern FILE *stderr; #define stdin stdin #define stdout stdout +#define stderr stderr /** * Get a char from stdin |