Skip to content

Commit

Permalink
Make std.sys types inline
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickpeterse committed Dec 10, 2024
1 parent 0e896d3 commit 8549788
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions std/src/std/sys.inko
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ impl ToInt for ExitStatus {
}

# The standard input stream of a child process.
class pub Stdin {
class pub inline Stdin {
let @fd: Int32
}

Expand Down Expand Up @@ -302,7 +302,7 @@ impl Write for Stdin {
}

# The standard output stream of a child process.
class pub Stdout {
class pub inline Stdout {
let @fd: Int32
}

Expand All @@ -319,7 +319,7 @@ impl Read for Stdout {
}

# The standard error stream of a child process.
class pub Stderr {
class pub inline Stderr {
let @fd: Int32
}

Expand Down

0 comments on commit 8549788

Please sign in to comment.