From: Phil.Wang Date: Wed, 25 Feb 2015 08:01:34 +0000 (+0800) Subject: Fix function declaration in NE10_init.h X-Git-Tag: v1.2.1~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=af6f5a413306f1e71934c022fcc5f042421bb23d;p=platform%2Fupstream%2Fne10.git Fix function declaration in NE10_init.h Specify type(s) of function ne10_init and function ne10_HasNEON in declarations so that they are prototypes as well. Change-Id: Ie445d5bd7b04f8bf56718dd87435b16b7f554aac --- diff --git a/inc/NE10_init.h b/inc/NE10_init.h index f849f2b..20d91de 100644 --- a/inc/NE10_init.h +++ b/inc/NE10_init.h @@ -37,12 +37,12 @@ extern "C" { /*! This routine returns NE10_OK if the running platform supports NEON, otherwise it returns NE10_ERR */ - extern ne10_result_t ne10_HasNEON(); + extern ne10_result_t ne10_HasNEON(void); /*! This routine initializes all the function pointers. */ - extern ne10_result_t ne10_init(); + extern ne10_result_t ne10_init(void); /*! This routine initializes all the math function pointers defined in "NE10_math.h" with pointers to ARM NEON or ARM VFP implementations.