17 lines
206 B
Swift
17 lines
206 B
Swift
|
import Foundation
|
||
|
#if os(Linux)
|
||
|
import Glibc
|
||
|
#else
|
||
|
import Darwin.C
|
||
|
#endif
|
||
|
|
||
|
|
||
|
func printAndFlush(_ message: String) {
|
||
|
print(message)
|
||
|
flushStdout()
|
||
|
}
|
||
|
|
||
|
func flushStdout() {
|
||
|
fflush(stdout)
|
||
|
}
|