From: nasm-bot f. H. P. A. <hp...@zy...> - 2014-11-25 20:18:25
|
Commit-ID: c664583b099be33ff544c2edd77d54ca70462746 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=c664583b099be33ff544c2edd77d54ca70462746 Author: H. Peter Anvin <hp...@zy...> AuthorDate: Tue, 25 Nov 2014 12:07:10 -0800 Committer: H. Peter Anvin <hp...@zy...> CommitDate: Tue, 25 Nov 2014 12:14:52 -0800 Add missing header file in labels.c Signed-off-by: H. Peter Anvin <hp...@zy...> --- labels.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/labels.c b/labels.c index 98408b4..e14fe47 100644 --- a/labels.c +++ b/labels.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. * @@ -45,6 +45,7 @@ #include "nasm.h" #include "nasmlib.h" #include "hashtbl.h" +#include "labels.h" /* * A local label is one that begins with exactly one period. Things |