Ignore:
Timestamp:
Feb 25, 2011, 9:26:54 PM (13 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi-busybox/include/xregex.h

    r1765 r2725  
    55 *
    66 * Based in part on code from sash, Copyright (c) 1999 by David I. Bell
    7  * Permission has been granted to redistribute this code under the GPL.
     7 * Permission has been granted to redistribute this code under GPL.
    88 *
    9  * Licensed under GPLv2 or later, see file License in this tarball for details.
     9 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
    1010 */
    11 #ifndef __BB_REGEX__
    12 #define __BB_REGEX__
     11#ifndef BB_REGEX_H
     12#define BB_REGEX_H 1
    1313
    1414#include <regex.h>
    15 char* regcomp_or_errmsg(regex_t *preg, const char *regex, int cflags);
    16 void xregcomp(regex_t *preg, const char *regex, int cflags);
     15
     16PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
     17
     18char* regcomp_or_errmsg(regex_t *preg, const char *regex, int cflags) FAST_FUNC;
     19void xregcomp(regex_t *preg, const char *regex, int cflags) FAST_FUNC;
     20
     21POP_SAVED_FUNCTION_VISIBILITY
    1722
    1823#endif
Note: See TracChangeset for help on using the changeset viewer.