Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
ff090a34
Commit
ff090a34
authored
Aug 02, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winegcc: Add a printf format attribute to the strmake() function.
parent
4bfdad15
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
utils.h
tools/winegcc/utils.h
+5
-1
No files found.
tools/winegcc/utils.h
View file @
ff090a34
...
@@ -21,6 +21,10 @@
...
@@ -21,6 +21,10 @@
*/
*/
#ifndef __GNUC__
#define __attribute__(X)
#endif
#ifndef DECLSPEC_NORETURN
#ifndef DECLSPEC_NORETURN
# if defined(_MSC_VER) && (_MSC_VER >= 1200) && !defined(MIDL_PASS)
# if defined(_MSC_VER) && (_MSC_VER >= 1200) && !defined(MIDL_PASS)
# define DECLSPEC_NORETURN __declspec(noreturn)
# define DECLSPEC_NORETURN __declspec(noreturn)
...
@@ -46,7 +50,7 @@ void error(const char* s, ...) DECLSPEC_NORETURN;
...
@@ -46,7 +50,7 @@ void error(const char* s, ...) DECLSPEC_NORETURN;
void
*
xmalloc
(
size_t
size
);
void
*
xmalloc
(
size_t
size
);
void
*
xrealloc
(
void
*
p
,
size_t
size
);
void
*
xrealloc
(
void
*
p
,
size_t
size
);
char
*
xstrdup
(
const
char
*
str
);
char
*
xstrdup
(
const
char
*
str
);
char
*
strmake
(
const
char
*
fmt
,
...);
char
*
strmake
(
const
char
*
fmt
,
...)
__attribute__
((
__format__
(
__printf__
,
1
,
2
)))
;
int
strendswith
(
const
char
*
str
,
const
char
*
end
);
int
strendswith
(
const
char
*
str
,
const
char
*
end
);
typedef
struct
{
typedef
struct
{
...
...
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