Index: fusl/src/termios/tcgetsid.c |
diff --git a/fusl/src/termios/tcgetsid.c b/fusl/src/termios/tcgetsid.c |
index 1053fd64724790adce5644375a7a1cec6e97df96..e558f32453b6418c9a79309612a2b3374d2babde 100644 |
--- a/fusl/src/termios/tcgetsid.c |
+++ b/fusl/src/termios/tcgetsid.c |
@@ -1,10 +1,9 @@ |
#include <termios.h> |
#include <sys/ioctl.h> |
-pid_t tcgetsid(int fd) |
-{ |
- int sid; |
- if (ioctl(fd, TIOCGSID, &sid) < 0) |
- return -1; |
- return sid; |
+pid_t tcgetsid(int fd) { |
+ int sid; |
+ if (ioctl(fd, TIOCGSID, &sid) < 0) |
+ return -1; |
+ return sid; |
} |