commit | 3b2096a9d6edd74622b94cacc76b77100f919b84 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Fri Jul 22 18:57:12 2016 -0700 |
committer | Elliott Hughes <enh@google.com> | Fri Jul 22 18:57:12 2016 -0700 |
tree | 1e5db3202e110172e7db1ced6d87cf8ceca7ed0b | |
parent | 7101c48f20f2f19dd1d314d23251fb52995a0870 [diff] [blame] |
Remove unnecessary 'extern's. Change-Id: Iba2b3fb6ff88e504f1657b915120ae43d58a1e03
diff --git a/libc/include/fnmatch.h b/libc/include/fnmatch.h index 772b4ef..1a5348b 100644 --- a/libc/include/fnmatch.h +++ b/libc/include/fnmatch.h
@@ -44,9 +44,8 @@ #define FNM_IGNORECASE FNM_CASEFOLD #define FNM_FILE_NAME FNM_PATHNAME -extern int fnmatch(const char *pattern, const char *string, int flags); +int fnmatch(const char* pattern, const char* string, int flags); __END_DECLS #endif /* _FNMATCH_H */ -