Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
osv
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
Service Desk
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
Verlässliche Systemsoftware
projects
osv
Commits
7f4740e5
Commit
7f4740e5
authored
12 years ago
by
Christoph Hellwig
Browse files
Options
Downloads
Patches
Plain Diff
don't abort on setvbuf
parent
0a47caef
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
runtime.cc
+5
-1
5 additions, 1 deletion
runtime.cc
with
5 additions
and
1 deletion
runtime.cc
+
5
−
1
View file @
7f4740e5
...
@@ -412,7 +412,11 @@ int puts(const char *s)
...
@@ -412,7 +412,11 @@ int puts(const char *s)
UNIMPL
(
size_t
wcslen
(
const
wchar_t
*
s
))
UNIMPL
(
size_t
wcslen
(
const
wchar_t
*
s
))
UNIMPL
(
int
wmemcmp
(
const
wchar_t
*
s1
,
const
wchar_t
*
s2
,
size_t
n
))
UNIMPL
(
int
wmemcmp
(
const
wchar_t
*
s1
,
const
wchar_t
*
s2
,
size_t
n
))
UNIMPL
(
wchar_t
*
wmemcpy
(
wchar_t
*
dest
,
const
wchar_t
*
src
,
size_t
n
))
UNIMPL
(
wchar_t
*
wmemcpy
(
wchar_t
*
dest
,
const
wchar_t
*
src
,
size_t
n
))
UNIMPL
(
int
setvbuf
(
FILE
*
stream
,
char
*
buf
,
int
mode
,
size_t
size
))
int
setvbuf
(
FILE
*
stream
,
char
*
buf
,
int
mode
,
size_t
size
)
{
debug
(
"stub setvbuf()"
);
return
0
;
}
UNIMPL
(
size_t
fread
(
void
*
ptr
,
size_t
size
,
size_t
nmemb
,
FILE
*
stream
))
UNIMPL
(
size_t
fread
(
void
*
ptr
,
size_t
size
,
size_t
nmemb
,
FILE
*
stream
))
UNIMPL
(
size_t
fwrite
(
const
void
*
ptr
,
size_t
size
,
size_t
nmemb
,
FILE
*
stream
))
UNIMPL
(
size_t
fwrite
(
const
void
*
ptr
,
size_t
size
,
size_t
nmemb
,
FILE
*
stream
))
UNIMPL
(
wint_t
fgetwc
(
FILE
*
stream
))
UNIMPL
(
wint_t
fgetwc
(
FILE
*
stream
))
...
...
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