From 8386b47074eea29141e82fab808e1189ca29d06f Mon Sep 17 00:00:00 2001 From: uz Date: Fri, 28 Jan 2011 12:21:48 +0000 Subject: [PATCH] No need to specify explicit paths in #include statements. git-svn-id: svn://svn.cc65.org/cc65/trunk@4943 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/ar65/objfile.h | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/ar65/objfile.h b/src/ar65/objfile.h index 50b05f9a7..d4c62307c 100644 --- a/src/ar65/objfile.h +++ b/src/ar65/objfile.h @@ -6,10 +6,10 @@ /* */ /* */ /* */ -/* (C) 1998 Ullrich von Bassewitz */ -/* Wacholderweg 14 */ -/* D-70597 Stuttgart */ -/* EMail: uz@musoftware.de */ +/* (C) 1998-2011, Ullrich von Bassewitz */ +/* Roemerstrasse 52 */ +/* D-70794 Filderstadt */ +/* EMail: uz@cc65.org */ /* */ /* */ /* This software is provided 'as-is', without any expressed or implied */ @@ -40,7 +40,8 @@ #include -#include "../common/objdefs.h" +/* common */ +#include "objdefs.h" @@ -66,7 +67,7 @@ void ObjExtract (const char* Name); /* End of objfile.h */ -#endif +#endif -- 2.39.5