]> git.proxmox.com Git - wasi-libc.git/blobdiff - libc-top-half/musl/src/stdio/getc.h
Format changes to musl code to fit musl's style.
[wasi-libc.git] / libc-top-half / musl / src / stdio / getc.h
index c61dd64230df5fee6a2f70890106622030428874..e62e3f0dab3b55d1524ec3d8dce101b381c34226 100644 (file)
@@ -23,7 +23,7 @@ static inline int do_getc(FILE *f)
                return getc_unlocked(f);
        return locking_getc(f);
 #else
-        // With no threads, locking is unnecessary.
+       // With no threads, locking is unnecessary.
        return getc_unlocked(f);
 #endif
 }