aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/aic7xxx/aicasm/aicasm_symbol.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/aic7xxx/aicasm/aicasm_symbol.c')
-rw-r--r--sys/dev/aic7xxx/aicasm/aicasm_symbol.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/aic7xxx/aicasm/aicasm_symbol.c b/sys/dev/aic7xxx/aicasm/aicasm_symbol.c
index d3bca594b468..95d9da9be1b7 100644
--- a/sys/dev/aic7xxx/aicasm/aicasm_symbol.c
+++ b/sys/dev/aic7xxx/aicasm/aicasm_symbol.c
@@ -343,10 +343,13 @@ aic_print_file_prologue(FILE *ofile)
static void
aic_print_include(FILE *dfile, char *header_file)
{
-
if (dfile == NULL)
return;
- fprintf(dfile, "\n#include \"%s\"\n\n", header_file);
+
+ if (header_file[0] == '<')
+ fprintf(dfile, "\n#include %s\n\n", header_file);
+ else
+ fprintf(dfile, "\n#include \"%s\"\n\n", header_file);
}
static void