aboutsummaryrefslogtreecommitdiff
path: root/lib/io/src/unix/ostream.c
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-06-15 14:23:47 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-06-15 14:23:47 +0200
commit8cf84b4995552bad4e77eb795e36c0b1d65a720a (patch)
treed3484d6591851bd4346ba9f2b57053fd105e7cf3 /lib/io/src/unix/ostream.c
parentfd5c9f1259d0191af57b20f06dda35e62acb6275 (diff)
libio: split stdin/stdout code from the rest of the file streams
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/io/src/unix/ostream.c')
-rw-r--r--lib/io/src/unix/ostream.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/io/src/unix/ostream.c b/lib/io/src/unix/ostream.c
index a97d8f3..57467f5 100644
--- a/lib/io/src/unix/ostream.c
+++ b/lib/io/src/unix/ostream.c
@@ -195,9 +195,3 @@ int ostream_open_file(sqfs_ostream_t **out, const char *path, int flags)
return 0;
}
-
-int ostream_open_stdout(sqfs_ostream_t **out)
-{
- return ostream_open_handle(out, "stdout", STDOUT_FILENO,
- SQFS_FILE_OPEN_NO_SPARSE);
-}