Skip to content

Commit

Permalink
perf hists browser: Add missing stdarg.h include
Browse files Browse the repository at this point in the history
    CC util/ui/browsers/annotate.o
In file included from util/ui/browsers/annotate.c:2:0:
util/ui/browsers/../helpline.h:9:42: error: expected declaration
specifiers or ‘...’ before ‘va_list’
    CC util/ui/browsers/hists.o
make: *** [util/ui/browsers/annotate.o] Error 1
make: *** Waiting for unfinished jobs....

Signed-off-by: Mike Galbraith <efault@gmx.de>
Link: http://lkml.kernel.org/n/tip-9vefl2807smi7t4luhs00tg6@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
  • Loading branch information
Mike Galbraith authored and Arnaldo Carvalho de Melo committed Oct 17, 2011
1 parent b2b7e9e commit 7bc7298
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tools/perf/util/ui/helpline.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#define _PERF_UI_HELPLINE_H_ 1

#include <stdio.h>
#include <stdarg.h>

void ui_helpline__init(void);
void ui_helpline__pop(void);
Expand Down

0 comments on commit 7bc7298

Please sign in to comment.