aboutsummaryrefslogtreecommitdiffstats
path: root/libc/include/regex.h
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2017-08-17 18:29:54 +0000
committerColin Cross <ccross@android.com>2017-08-17 18:29:54 +0000
commit9af9120091ceb96641d7c6c645fabad96db4bc0d (patch)
tree0ac35e33169ae9b07c075a3c623148d2e974d14f /libc/include/regex.h
parent079bff4fa52b0c3c76057451cc9cdecf1827fce0 (diff)
downloadandroid_bionic-9af9120091ceb96641d7c6c645fabad96db4bc0d.tar.gz
android_bionic-9af9120091ceb96641d7c6c645fabad96db4bc0d.tar.bz2
android_bionic-9af9120091ceb96641d7c6c645fabad96db4bc0d.zip
Revert "Name function arguments in libc headers for Studio."
This reverts commit 079bff4fa52b0c3c76057451cc9cdecf1827fce0. Broke builds with SANITIZE_HOST=address with an asan failure in versioner. Change-Id: I22b113fd5405589d1a25e5e137c450aaba1ade5f
Diffstat (limited to 'libc/include/regex.h')
-rw-r--r--libc/include/regex.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libc/include/regex.h b/libc/include/regex.h
index c4cc39cd5..b06a515b4 100644
--- a/libc/include/regex.h
+++ b/libc/include/regex.h
@@ -97,10 +97,10 @@ typedef struct {
#define REG_BACKR 02000 /* force use of backref code */
__BEGIN_DECLS
-int regcomp(regex_t* __re, const char* __regex, int __flags);
-size_t regerror(int __error_code, const regex_t* __re, char* __buf, size_t __n);
-int regexec(const regex_t* __re, const char* __s, size_t __match_count, regmatch_t __matches[], int __flags);
-void regfree(regex_t* __re);
+int regcomp(regex_t *, const char *, int);
+size_t regerror(int, const regex_t *, char *, size_t);
+int regexec(const regex_t *, const char *, size_t, regmatch_t [], int);
+void regfree(regex_t *);
__END_DECLS
-#endif
+#endif /* !_REGEX_H_ */