Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/opennl/extern/ONL_opennl.h')
-rw-r--r--intern/opennl/extern/ONL_opennl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/opennl/extern/ONL_opennl.h b/intern/opennl/extern/ONL_opennl.h
index 5e4bd24313c..a84a153709d 100644
--- a/intern/opennl/extern/ONL_opennl.h
+++ b/intern/opennl/extern/ONL_opennl.h
@@ -109,10 +109,10 @@ typedef void* NLContext ;
/*
* Contexts
*/
- NLContext nlNewContext() ;
+ NLContext nlNewContext(void) ;
void nlDeleteContext(NLContext context) ;
void nlMakeCurrent(NLContext context) ;
- NLContext nlGetCurrent() ;
+ NLContext nlGetCurrent(void) ;
/*
* State set/get
@@ -153,7 +153,7 @@ typedef void* NLContext ;
* Solve
*/
- NLboolean nlSolve() ;
+ NLboolean nlSolve(void) ;
#ifdef __cplusplus
}