Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1676)

Unified Diff: fusl/include/sys/msg.h

Issue 1714623002: [fusl] clang-format fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: headers too Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: fusl/include/sys/msg.h
diff --git a/fusl/include/sys/msg.h b/fusl/include/sys/msg.h
index 139f22b7008fab60ad581f9057fdb8367756ba5f..b5c7e061c6f9de6e5aa3dd3f573640edb0fb166b 100644
--- a/fusl/include/sys/msg.h
+++ b/fusl/include/sys/msg.h
@@ -23,25 +23,25 @@ typedef unsigned long msglen_t;
#define __msg_cbytes msg_cbytes
#define MSG_NOERROR 010000
-#define MSG_EXCEPT 020000
+#define MSG_EXCEPT 020000
#define MSG_STAT 11
#define MSG_INFO 12
struct msginfo {
- int msgpool, msgmap, msgmax, msgmnb, msgmni, msgssz, msgtql;
- unsigned short msgseg;
+ int msgpool, msgmap, msgmax, msgmnb, msgmni, msgssz, msgtql;
+ unsigned short msgseg;
};
-int msgctl (int, int, struct msqid_ds *);
-int msgget (key_t, int);
-ssize_t msgrcv (int, void *, size_t, long, int);
-int msgsnd (int, const void *, size_t, int);
+int msgctl(int, int, struct msqid_ds*);
+int msgget(key_t, int);
+ssize_t msgrcv(int, void*, size_t, long, int);
+int msgsnd(int, const void*, size_t, int);
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
struct msgbuf {
- long mtype;
- char mtext[1];
+ long mtype;
+ char mtext[1];
};
#endif

Powered by Google App Engine
This is Rietveld 408576698