Fix function declaration in NE10_init.h
authorPhil.Wang <phil.wang@arm.com>
Wed, 25 Feb 2015 08:01:34 +0000 (16:01 +0800)
committerPhil.Wang <phil.wang@arm.com>
Wed, 25 Feb 2015 08:01:34 +0000 (16:01 +0800)
Specify type(s) of function ne10_init and function ne10_HasNEON in
declarations so that they are prototypes as well.

Change-Id: Ie445d5bd7b04f8bf56718dd87435b16b7f554aac

inc/NE10_init.h

index f849f2b..20d91de 100644 (file)
@@ -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.