This website requires JavaScript.
Explore
Mirrors
Help
Sign In
Macintosh-Tools
/
Retro68
Watch
1
Star
0
Fork
0
You've already forked Retro68
mirror of
https://github.com/autc04/Retro68.git
synced
2024-11-20 10:42:21 +00:00
Code
Issues
Projects
Releases
Wiki
Activity
ecf9a4e12b
Retro68
/
AutomatedTests
/
StdIO.c
9 lines
107 B
C
Raw
Normal View
History
Unescape
Escape
C library/system calls: clean up, implement open, read, write, close, lseek; clean up the command line gcc passes to ld
2017-10-08 17:28:10 +00:00
#
include
<stdio.h>
int
main
(
)
{
Switch tab-indented files to 4-space indent
2019-08-18 11:21:00 +00:00
FILE
*
f
=
fopen
(
"
out
"
,
"
w
"
)
;
fprintf
(
f
,
"
OK
\n
"
)
;
fclose
(
f
)
;
C library/system calls: clean up, implement open, read, write, close, lseek; clean up the command line gcc passes to ld
2017-10-08 17:28:10 +00:00
}
Reference in New Issue
Copy Permalink