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

Unified Diff: fusl/src/internal/libc.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/src/internal/libc.h
diff --git a/fusl/src/internal/libc.h b/fusl/src/internal/libc.h
index 5e14518312c77025d107f3f11a2d1ea626f2734a..a8a9e1c5b11559f67608d1c031c65f693d563151 100644
--- a/fusl/src/internal/libc.h
+++ b/fusl/src/internal/libc.h
@@ -8,25 +8,25 @@
struct __locale_map;
struct __locale_struct {
- const struct __locale_map *volatile cat[6];
+ const struct __locale_map* volatile cat[6];
};
struct tls_module {
- struct tls_module *next;
- void *image;
- size_t len, size, align, offset;
+ struct tls_module* next;
+ void* image;
+ size_t len, size, align, offset;
};
struct __libc {
- int can_do_threads;
- int threaded;
- int secure;
- volatile int threads_minus_1;
- size_t *auxv;
- struct tls_module *tls_head;
- size_t tls_size, tls_align, tls_cnt;
- size_t page_size;
- struct __locale_struct global_locale;
+ int can_do_threads;
+ int threaded;
+ int secure;
+ volatile int threads_minus_1;
+ size_t* auxv;
+ struct tls_module* tls_head;
+ size_t tls_size, tls_align, tls_cnt;
+ size_t page_size;
+ struct __locale_struct global_locale;
};
#ifndef PAGE_SIZE
@@ -47,21 +47,21 @@ extern size_t __sysinfo ATTR_LIBC_VISIBILITY;
extern char *__progname, *__progname_full;
/* Designed to avoid any overhead in non-threaded processes */
-void __lock(volatile int *) ATTR_LIBC_VISIBILITY;
-void __unlock(volatile int *) ATTR_LIBC_VISIBILITY;
-int __lockfile(FILE *) ATTR_LIBC_VISIBILITY;
-void __unlockfile(FILE *) ATTR_LIBC_VISIBILITY;
+void __lock(volatile int*) ATTR_LIBC_VISIBILITY;
+void __unlock(volatile int*) ATTR_LIBC_VISIBILITY;
+int __lockfile(FILE*) ATTR_LIBC_VISIBILITY;
+void __unlockfile(FILE*) ATTR_LIBC_VISIBILITY;
#define LOCK(x) __lock(x)
#define UNLOCK(x) __unlock(x)
-void __synccall(void (*)(void *), void *);
+void __synccall(void (*)(void*), void*);
int __setxid(int, int, int, int);
-extern char **__environ;
+extern char** __environ;
#undef weak_alias
#define weak_alias(old, new) \
- extern __typeof(old) new __attribute__((weak, alias(#old)))
+ extern __typeof(old) new __attribute__((weak, alias(#old)))
#undef LFS64_2
#define LFS64_2(x, y) weak_alias(x, y)

Powered by Google App Engine
This is Rietveld 408576698