]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/tools/build/src/engine/regexp.h
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / tools / build / src / engine / regexp.h
index 3a52ba3d6bc43f44ae5d523b6d29880a6415299d..bbac95eeba5782c9b6869fd8c3cd18ed1d2b0bed 100644 (file)
@@ -16,13 +16,13 @@ typedef struct regexp {
     char regstart;      /* Internal use only. */
     char reganch;       /* Internal use only. */
     char * regmust;     /* Internal use only. */
-    int regmlen;        /* Internal use only. */
+    int32_t regmlen;   /* Internal use only. */
     char program[ 1 ];  /* Unwarranted chumminess with compiler. */
 } regexp;
 
 
 regexp * regcomp( char const * exp );
-int regexec( regexp * prog, char const * string );
+int32_t regexec( regexp * prog, char const * string );
 void regerror( char const * s );