~ubuntu-branches/ubuntu/lucid/postgresql-8.4/lucid-proposed

« back to all changes in this revision

Viewing changes to src/include/regex/regex.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-07-11 16:59:35 UTC
  • mfrom: (5.1.1 karmic)
  • Revision ID: james.westby@ubuntu.com-20090711165935-jfwin6gfrxf0gfsi
Tags: 8.4.0-2
* debian/libpq-dev.install: Ship catalog/genbki.h. (Closes: #536139)
* debian/rules: Drop --enable-cassert for final release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
30
30
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
31
 *
32
 
 * $PostgreSQL: pgsql/src/include/regex/regex.h,v 1.30 2008/04/02 14:42:56 mha Exp $
 
32
 * $PostgreSQL: pgsql/src/include/regex/regex.h,v 1.31 2009/06/11 14:49:12 momjian Exp $
33
33
 */
34
34
 
35
35
/*
151
151
#define REG_INVARG      16                      /* invalid argument to regex function */
152
152
#define REG_MIXED       17                      /* character widths of regex and string differ */
153
153
#define REG_BADOPT      18                      /* invalid embedded option */
154
 
#define REG_ETOOBIG     19                      /* nfa has too many states */
 
154
#define REG_ETOOBIG 19                  /* nfa has too many states */
155
155
/* two specials for debugging and testing */
156
156
#define REG_ATOI        101                     /* convert error-code name to number */
157
157
#define REG_ITOA        102                     /* convert error-code number to name */
169
169
/*
170
170
 * guc configuration variables
171
171
 */
172
 
extern int regex_flavor;
 
172
extern int      regex_flavor;
173
173
 
174
174
#endif   /* _REGEX_H_ */