Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pike
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
Container registry
Model registry
Operate
Environments
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
pikelang
pike
Commits
4e542ff8
Commit
4e542ff8
authored
20 years ago
by
Martin Nilsson
Browse files
Options
Downloads
Patches
Plain Diff
Fix warnings.
Rev: src/cpp.h:1.12
parent
45511b9a
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/cpp.h
+4
-7
4 additions, 7 deletions
src/cpp.h
with
4 additions
and
7 deletions
src/cpp.h
+
4
−
7
View file @
4e542ff8
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
|| This file is part of Pike. For copyright information see COPYRIGHT.
|| This file is part of Pike. For copyright information see COPYRIGHT.
|| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
|| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
|| for more information.
|| for more information.
|| $Id: cpp.h,v 1.1
1
2004/06/29
1
1:1
9:1
9 nilsson Exp $
|| $Id: cpp.h,v 1.1
2
2004/06/29
2
1:1
5:5
9 nilsson Exp $
*/
*/
#ifndef CPP_H
#ifndef CPP_H
...
@@ -21,13 +21,10 @@ struct cpp;
...
@@ -21,13 +21,10 @@ struct cpp;
static
void
cpp_error
(
struct
cpp
*
this
,
const
char
*
err
);
static
void
cpp_error
(
struct
cpp
*
this
,
const
char
*
err
);
static
void
cpp_error_vsprintf
(
struct
cpp
*
this
,
const
char
*
fmt
,
static
void
cpp_error_vsprintf
(
struct
cpp
*
this
,
const
char
*
fmt
,
va_list
args
);
va_list
args
);
static
void
cpp_error_sprintf
(
struct
cpp
*
this
,
const
char
*
fmt
,
...)
static
void
cpp_error_sprintf
(
struct
cpp
*
this
,
const
char
*
fmt
,
...);
ATTRIBUTE
((
format
(
printf
,
2
,
3
)));
static
void
cpp_handle_exception
(
struct
cpp
*
this
,
static
void
cpp_handle_exception
(
struct
cpp
*
this
,
const
char
*
cpp_error_fmt
,
...)
const
char
*
cpp_error_fmt
,
...);
ATTRIBUTE
((
format
(
printf
,
2
,
3
)));
static
void
cpp_warning
(
struct
cpp
*
this
,
const
char
*
cpp_warn_fmt
,
...);
static
void
cpp_warning
(
struct
cpp
*
this
,
const
char
*
cpp_warn_fmt
,
...)
ATTRIBUTE
((
format
(
printf
,
2
,
3
)));
void
PUSH_STRING
(
char
*
str
,
void
PUSH_STRING
(
char
*
str
,
INT32
len
,
INT32
len
,
dynamic_buffer
*
buf
);
dynamic_buffer
*
buf
);
...
...
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