Add a parenthesis

This commit is contained in:
Khairul Azhar Kasmiran 2019-06-07 12:51:03 +08:00 committed by GitHub
parent fffce3b5fd
commit bb6f18b79a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -169,7 +169,7 @@ The structure of the C files in r2 must be like this:
#include <r_core.h> ## includes
static int globals ## const, define, global variables
static void helper() {} ## static functions
R_IPI void internal() {} ## internal apis (used only inside the library
R_IPI void internal() {} ## internal apis (used only inside the library)
R_API void public() {} ## public apis starting with constructor/destructor
```