[fusl] clang-format fusl

R=viettrungluu@chromium.org

Review URL: https://codereview.chromium.org/1714623002 .
diff --git a/fusl/include/crypt.h b/fusl/include/crypt.h
index 07de216..1b852be 100644
--- a/fusl/include/crypt.h
+++ b/fusl/include/crypt.h
@@ -6,12 +6,12 @@
 #endif
 
 struct crypt_data {
-	int initialized;
-	char __buf[256];
+  int initialized;
+  char __buf[256];
 };
 
-char *crypt(const char *, const char *);
-char *crypt_r(const char *, const char *, struct crypt_data *);
+char* crypt(const char*, const char*);
+char* crypt_r(const char*, const char*, struct crypt_data*);
 
 #ifdef __cplusplus
 }