diff options
| author | Galen Sagarin <gps5307@rit.edu> | 2025-04-29 14:18:40 -0400 |
|---|---|---|
| committer | Galen Sagarin <gps5307@rit.edu> | 2025-04-29 14:18:40 -0400 |
| commit | ae2cdd83ba4a0cae161db0b29031d5591005fa34 (patch) | |
| tree | 82fbdfcbb1fe4e3b5e232db195c8c331d69489fd /user/include/stdio.h | |
| parent | Started writing fat.c (diff) | |
| parent | fs header changes (diff) | |
| download | comus-ae2cdd83ba4a0cae161db0b29031d5591005fa34.tar.gz comus-ae2cdd83ba4a0cae161db0b29031d5591005fa34.tar.bz2 comus-ae2cdd83ba4a0cae161db0b29031d5591005fa34.zip | |
Merge branch 'main' of https://github.com/kenshineto/kern into fat32
Merging main into here
Diffstat (limited to '')
| -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 |