fix indention with spaces in powerpc asm
[oweals/musl.git] / src / stdio / __stdio_close.c
index 24fef33f8d5e8df0078cde072a46fcc5efe8762b..9f7ee18c23fa98837aa44f49b2d58ecef8b3e4a6 100644 (file)
@@ -2,5 +2,5 @@
 
 int __stdio_close(FILE *f)
 {
-       return __syscall_close(f->fd);
+       return syscall(SYS_close, f->fd);
 }