From: nasm-bot f. H. P. A. <hp...@zy...> - 2014-11-25 20:18:24
|
Commit-ID: c0c67c67c865c71f6da2c8a796d7c6702988895a Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=c0c67c67c865c71f6da2c8a796d7c6702988895a Author: H. Peter Anvin <hp...@zy...> AuthorDate: Tue, 25 Nov 2014 12:07:43 -0800 Committer: H. Peter Anvin <hp...@zy...> CommitDate: Tue, 25 Nov 2014 12:14:52 -0800 Add missing header file in output/nulldbg.c Signed-off-by: H. Peter Anvin <hp...@zy...> --- output/nulldbg.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/output/nulldbg.c b/output/nulldbg.c index c7bace1..581a1c5 100644 --- a/output/nulldbg.c +++ b/output/nulldbg.c @@ -1,6 +1,6 @@ /* ----------------------------------------------------------------------- * * - * Copyright 1996-2009 The NASM Authors - All Rights Reserved + * Copyright 1996-2014 The NASM Authors - All Rights Reserved * See the file AUTHORS included with the NASM distribution for * the specific copyright holders. * @@ -33,6 +33,7 @@ #include "nasm.h" #include "nasmlib.h" +#include "output/outlib.h" void null_debug_init(void) { |