Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
2f572ce1
Commit
2f572ce1
authored
Jul 07, 2010
by
Matthias Braun
Browse files
use "" include path inside the project
[r27707]
parent
d0b3f40e
Changes
4
Hide whitespace changes
Inline
Side-by-side
ir/libcore/lc_common_t.h
View file @
2f572ce1
...
...
@@ -29,12 +29,12 @@
#define bcopy(src,dest,n) memcpy(dest,src,n)
#include
<libcore/
lc_config.h
>
#include
"
lc_config.h
"
#define FUNCNAME LC_FUNCNAME
#define UNUSED(x) LC_UNUSED(x)
#define LONGLONG long
/* LC_LONGLONG */
#define LONGDOUBLE
double
/* LC_LONGDOUBLE */
#define LONGDOUBLE
double
/* LC_LONGDOUBLE */
#ifdef LC_HAVE_C99
#define HAVE_C99 LC_HAVE_C99
...
...
ir/libcore/lc_opts.h
View file @
2f572ce1
...
...
@@ -28,7 +28,7 @@
#include
<stdio.h>
#include
<libcore/
lc_printf.h
>
#include
"
lc_printf.h
"
/**
* The type of an option.
...
...
ir/libcore/lc_opts_enum.h
View file @
2f572ce1
...
...
@@ -23,7 +23,7 @@
#ifndef _LC_OPTS_ENUM_T
#define _LC_OPTS_ENUM_T
#include
<libcore/
lc_opts.h
>
#include
"
lc_opts.h
"
#define _LC_OPT_DECL_ENUM(T, N) \
typedef struct { \
...
...
ir/libcore/lc_printf.h
View file @
2f572ce1
...
...
@@ -28,18 +28,14 @@
#ifndef _LIBCORE_XPRINTF_H
#define _LIBCORE_XPRINTF_H
#ifdef __cplusplus
extern
"C"
{
#endif
#include
<stddef.h>
#include
<stdarg.h>
#include
<stdio.h>
#include
<obstack.h>
#include
<libcore/
lc_config.h
>
#include
<libcore/
lc_appendable.h
>
#include
"
lc_config.h
"
#include
"
lc_appendable.h
"
typedef
struct
_lc_arg_occ_t
{
int
width
;
/**< The width, or 0 if not given. */
...
...
@@ -122,9 +118,4 @@ int lc_vsnprintf(char *buf, size_t len, const char *fmt, va_list args);
int
lc_vfprintf
(
FILE
*
f
,
const
char
*
fmt
,
va_list
args
);
int
lc_voprintf
(
struct
obstack
*
obst
,
const
char
*
fmt
,
va_list
args
);
#ifdef __cplusplus
}
#endif
#endif
/* _LIBCORE_XPRINTF_H */
Write
Preview
Supports
Markdown
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