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

Side by Side Diff: fusl/src/process/fdop.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 unified diff | Download patch
OLDNEW
1 #define FDOP_CLOSE 1 1 #define FDOP_CLOSE 1
2 #define FDOP_DUP2 2 2 #define FDOP_DUP2 2
3 #define FDOP_OPEN 3 3 #define FDOP_OPEN 3
4 4
5 struct fdop { 5 struct fdop {
6 » struct fdop *next, *prev; 6 struct fdop *next, *prev;
7 » int cmd, fd, srcfd, oflag; 7 int cmd, fd, srcfd, oflag;
8 » mode_t mode; 8 mode_t mode;
9 » char path[]; 9 char path[];
10 }; 10 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698