use "" include path inside the project
authorMatthias Braun <matze@braunis.de>
Wed, 7 Jul 2010 08:16:57 +0000 (08:16 +0000)
committerMatthias Braun <matze@braunis.de>
Wed, 7 Jul 2010 08:16:57 +0000 (08:16 +0000)
[r27707]

ir/libcore/lc_common_t.h
ir/libcore/lc_opts.h
ir/libcore/lc_opts_enum.h
ir/libcore/lc_printf.h

index 065cf57..33617f4 100644 (file)
 
 #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
index 671d7bf..13b6ca1 100644 (file)
@@ -28,7 +28,7 @@
 
 #include <stdio.h>
 
-#include <libcore/lc_printf.h>
+#include "lc_printf.h"
 
 /**
  * The type of an option.
index 0fb3d67..dabd2dc 100644 (file)
@@ -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 {                                \
index 621f2ba..dd9d1c0 100644 (file)
 #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 */