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
f402bcd0
Commit
f402bcd0
authored
Apr 22, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include/msvcrt: Remove some prototypes that conflict with gcc builtins.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b9ae3bf0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
math.h
include/msvcrt/math.h
+0
-1
process.h
include/msvcrt/process.h
+4
-4
No files found.
include/msvcrt/math.h
View file @
f402bcd0
...
...
@@ -221,7 +221,6 @@ static inline double jn( int n, double x ) { return _jn( n, x ); }
static
inline
double
y0
(
double
x
)
{
return
_y0
(
x
);
}
static
inline
double
y1
(
double
x
)
{
return
_y1
(
x
);
}
static
inline
double
yn
(
int
n
,
double
x
)
{
return
_yn
(
n
,
x
);
}
static
inline
double
cabs
(
struct
_complex
z
)
{
return
_cabs
(
z
);
}
static
inline
float
hypotf
(
float
x
,
float
y
)
{
return
_hypotf
(
x
,
y
);
}
...
...
include/msvcrt/process.h
View file @
f402bcd0
...
...
@@ -94,14 +94,14 @@ int __cdecl _wsystem(const wchar_t*);
static
inline
intptr_t
cwait
(
int
*
status
,
intptr_t
pid
,
int
action
)
{
return
_cwait
(
status
,
pid
,
action
);
}
static
inline
int
getpid
(
void
)
{
return
_getpid
();
}
static
inline
intptr_t
execv
(
const
char
*
name
,
const
char
*
const
*
argv
)
{
return
_execv
(
name
,
argv
);
}
static
inline
intptr_t
execve
(
const
char
*
name
,
const
char
*
const
*
argv
,
const
char
*
const
*
envv
)
{
return
_execve
(
name
,
argv
,
envv
);
}
static
inline
intptr_t
execvp
(
const
char
*
name
,
const
char
*
const
*
argv
)
{
return
_execvp
(
name
,
argv
);
}
static
inline
intptr_t
execvpe
(
const
char
*
name
,
const
char
*
const
*
argv
,
const
char
*
const
*
envv
)
{
return
_execvpe
(
name
,
argv
,
envv
);
}
static
inline
intptr_t
spawnv
(
int
flags
,
const
char
*
name
,
const
char
*
const
*
argv
)
{
return
_spawnv
(
flags
,
name
,
argv
);
}
static
inline
intptr_t
spawnve
(
int
flags
,
const
char
*
name
,
const
char
*
const
*
argv
,
const
char
*
const
*
envv
)
{
return
_spawnve
(
flags
,
name
,
argv
,
envv
);
}
static
inline
intptr_t
spawnvp
(
int
flags
,
const
char
*
name
,
const
char
*
const
*
argv
)
{
return
_spawnvp
(
flags
,
name
,
argv
);
}
static
inline
intptr_t
spawnvpe
(
int
flags
,
const
char
*
name
,
const
char
*
const
*
argv
,
const
char
*
const
*
envv
)
{
return
_spawnvpe
(
flags
,
name
,
argv
,
envv
);
}
#define execv _execv
#define execve _execve
#define execvp _execvp
#define execvpe _execvpe
#if defined(__GNUC__) && (__GNUC__ < 4)
extern
intptr_t
WINAPIV
execl
(
const
char
*
,
const
char
*
,...)
__attribute__
((
alias
(
"_execl"
)));
...
...
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