Fix style

This commit is contained in:
Danila Zolotarev 2025-03-02 04:31:49 +03:00
parent 43d8d4bc12
commit 2536a74f03
No known key found for this signature in database

View file

@ -1,7 +1,6 @@
#include "libc/calls/calls.h"
#include "libc/sysv/consts/s.h"
int mkfifo(const char *path, uint32_t mode)
{
return mknod(path, mode | S_IFIFO, 0);
int mkfifo(const char *path, uint32_t mode) {
return mknod(path, mode | S_IFIFO, 0);
}