summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1997-12-21 21:14:45 +0000
committerUlrich Drepper <drepper@redhat.com>1997-12-21 21:14:45 +0000
commit5b627ca39d48d228bf168033919c87a7ca039939 (patch)
treeb4a9244e967edb2f3a8de67b4906d6964dc882ba
parent6b6f9ff8989c0bb94e7af643a0960c84e1e18add (diff)
(compile): Use parameter names without __.
-rw-r--r--misc/regexp.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/misc/regexp.h b/misc/regexp.h
index 04da70a534..dc61c8dc70 100644
--- a/misc/regexp.h
+++ b/misc/regexp.h
@@ -97,7 +97,7 @@ extern char *locs;
This function cannot be defined in the libc itself since it depends
on the macros. */
char *
-compile (char *__instring, char *__expbuf, __const char *__endbuf, int __eof)
+compile (char *instring, char *expbuf, __const char *endbuf, int eof)
{
char *__input_buffer = NULL;
size_t __input_size = 0;
@@ -117,19 +117,19 @@ compile (char *__instring, char *__expbuf, __const char *__endbuf, int __eof)
this really proofs to be wrong. */
const size_t __req = 8;
#endif
- __expbuf += __req;
- __expbuf -= (__expbuf - ((char *) 0)) % __req;
- if (__endbuf < __expbuf + sizeof (regex_t))
+ expbuf += __req;
+ expbuf -= (expbuf - ((char *) 0)) % __req;
+ if (endbuf < expbuf + sizeof (regex_t))
{
ERROR (50);
}
- __expr_ptr = (regex_t *) __expbuf;
+ __expr_ptr = (regex_t *) expbuf;
/* The remaining space in the buffer can be used for the compiled
pattern. */
- __expr_ptr->buffer = __expbuf + sizeof (regex_t);
- __expr_ptr->allocated = __endbuf - (char *) __expr_ptr->buffer;
+ __expr_ptr->buffer = expbuf + sizeof (regex_t);
+ __expr_ptr->allocated = endbuf - (char *) __expr_ptr->buffer;
- while ((__ch = (GETC ())) != __eof)
+ while ((__ch = (GETC ())) != eof)
{
if (__ch == '\0' || __ch == 'n')
{