Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
6b7e3e1c
Commit
6b7e3e1c
authored
Apr 25, 2005
by
Marcus Meissner
Committed by
Alexandre Julliard
Apr 25, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gcc4 alias fixes.
parent
accf3ee2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
conio.h
include/msvcrt/conio.h
+1
-1
io.h
include/msvcrt/io.h
+1
-1
process.h
include/msvcrt/process.h
+1
-1
No files found.
include/msvcrt/conio.h
View file @
6b7e3e1c
...
...
@@ -53,7 +53,7 @@ static inline int outp(unsigned short i, int j) { return _outp(i, j); }
static
inline
unsigned
short
outpw
(
unsigned
short
i
,
unsigned
short
j
)
{
return
_outpw
(
i
,
j
);
}
#endif
#if
def __GNUC__
#if
defined(__GNUC__) && (__GNUC__ < 4)
extern
int
cprintf
(
const
char
*
,...)
__attribute__
((
alias
(
"_cprintf"
),
format
(
printf
,
1
,
2
)));
extern
int
cscanf
(
const
char
*
,...)
__attribute__
((
alias
(
"_cscanf"
),
format
(
scanf
,
1
,
2
)));
#else
...
...
include/msvcrt/io.h
View file @
6b7e3e1c
...
...
@@ -175,7 +175,7 @@ static inline int unlink(const char* path) { return _unlink(path); }
#endif
static
inline
int
write
(
int
fd
,
const
void
*
buf
,
unsigned
int
size
)
{
return
_write
(
fd
,
buf
,
size
);
}
#if
def __GNUC__
#if
defined(__GNUC__) && (__GNUC__ < 4)
extern
int
open
(
const
char
*
,
int
,...)
__attribute__
((
alias
(
"_open"
)));
extern
int
sopen
(
const
char
*
,
int
,
int
,...)
__attribute__
((
alias
(
"_sopen"
)));
#else
...
...
include/msvcrt/process.h
View file @
6b7e3e1c
...
...
@@ -125,7 +125,7 @@ static inline int spawnve(int flags, const char* name, const char* const* argv,
static
inline
int
spawnvp
(
int
flags
,
const
char
*
name
,
const
char
*
const
*
argv
)
{
return
_spawnvp
(
flags
,
name
,
argv
);
}
static
inline
int
spawnvpe
(
int
flags
,
const
char
*
name
,
const
char
*
const
*
argv
,
const
char
*
const
*
envv
)
{
return
_spawnvpe
(
flags
,
name
,
argv
,
envv
);
}
#if
def __GNUC__
#if
defined(__GNUC__) && (__GNUC__ < 4)
extern
int
execl
(
const
char
*
,
const
char
*
,...)
__attribute__
((
alias
(
"_execl"
)));
extern
int
execle
(
const
char
*
,
const
char
*
,...)
__attribute__
((
alias
(
"_execle"
)));
extern
int
execlp
(
const
char
*
,
const
char
*
,...)
__attribute__
((
alias
(
"_execlp"
)));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment