diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-08-29 21:56:17 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-08-29 21:56:17 +0300 |
commit | 6023b5f57f8b4869d75dd43ea6fdd96253312d5a (patch) | |
tree | 92a687c1e9267e89bdd4ebc0b558d6ed2e70452d /getopt.c | |
parent | 86e23f74da247cd661c69e4bb1a5327001cc3317 (diff) | |
download | egawk-6023b5f57f8b4869d75dd43ea6fdd96253312d5a.tar.gz egawk-6023b5f57f8b4869d75dd43ea6fdd96253312d5a.tar.bz2 egawk-6023b5f57f8b4869d75dd43ea6fdd96253312d5a.zip |
Sync getopt with GLIBC.
Diffstat (limited to 'getopt.c')
-rw-r--r-- | getopt.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -236,7 +236,7 @@ exchange (char **argv, struct _getopt_data *d) { /* Bottom segment is the short one. */ int len = middle - bottom; - register int i; + int i; /* Swap it with the top part of the top segment. */ for (i = 0; i < len; i++) @@ -253,7 +253,7 @@ exchange (char **argv, struct _getopt_data *d) { /* Top segment is the short one. */ int len = top - middle; - register int i; + int i; /* Swap it with the bottom part of the bottom segment. */ for (i = 0; i < len; i++) @@ -574,8 +574,8 @@ _getopt_internal_r (int argc, char *const *argv, const char *optstring, || pfound->flag != p->flag || pfound->val != p->val) { - /* Second or later nonexact match found. */ - struct option_list *newp = malloc (sizeof (*newp)); + /* Second or later nonexact match found. */ + struct option_list *newp = alloca (sizeof (*newp)); newp->p = p; newp->needs_free = 1; newp->next = ambig_list; |