Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
relibc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tornax O7
relibc
Commits
f516ff72
Commit
f516ff72
authored
6 years ago
by
jD91mZM2
Browse files
Options
Downloads
Plain Diff
Merge branch 'regoff_t' into 'master'
Move regoff_t to regex.h See merge request
!168
parents
0469c0c2
0f5fa8c9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/sys/types.h
+0
-1
0 additions, 1 deletion
include/sys/types.h
src/header/regex/mod.rs
+2
-0
2 additions, 0 deletions
src/header/regex/mod.rs
with
2 additions
and
1 deletion
include/sys/types.h
+
0
−
1
View file @
f516ff72
...
...
@@ -20,7 +20,6 @@ typedef long clock_t;
typedef
int
clockid_t
;
typedef
void
*
timer_t
;
typedef
unsigned
long
int
blkcnt_t
;
typedef
size_t
regoff_t
;
typedef
unsigned
char
u_char
,
uchar
;
typedef
unsigned
short
u_short
,
ushort
;
...
...
This diff is collapsed.
Click to expand it.
src/header/regex/mod.rs
+
2
−
0
View file @
f516ff72
...
...
@@ -9,6 +9,8 @@ use platform::types::*;
use
posix_regex
::{
PosixRegexBuilder
,
PosixRegex
};
use
posix_regex
::
compile
::{
Error
as
CompileError
,
Token
,
Range
};
pub
type
regoff_t
=
size_t
;
#[repr(C)]
pub
struct
regex_t
{
// Can't be a normal Vec<T> because then the struct size won't be known
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment