From bb6f18b79a4aa6a29950792b8fb8b06aaf40d09c Mon Sep 17 00:00:00 2001 From: Khairul Azhar Kasmiran Date: Fri, 7 Jun 2019 12:51:03 +0800 Subject: [PATCH] Add a parenthesis --- DEVELOPERS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEVELOPERS.md b/DEVELOPERS.md index d849541cf2..c33660b524 100644 --- a/DEVELOPERS.md +++ b/DEVELOPERS.md @@ -169,7 +169,7 @@ The structure of the C files in r2 must be like this: #include ## 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 ```