mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-10-23 09:39:16 +08:00
Application.mk and main.c files: Change builtin's entry point from main to xxx_main by macro expansion. This change make the entry point fully compliant with POSIX/ANSI standard.
This commit is contained in:
@@ -82,7 +82,7 @@ static FAR const char *g_buttonLabels[BUTTONARRAY_NCOLUMNS*BUTTONARRAY_NROWS] =
|
||||
|
||||
// Suppress name-mangling
|
||||
|
||||
extern "C" int cbuttonarray_main(int argc, char *argv[]);
|
||||
extern "C" int main(int argc, char *argv[]);
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Private Functions
|
||||
@@ -196,7 +196,7 @@ static void checkHighlighting(CButtonArray *buttonArray)
|
||||
// nxheaders_main
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
int cbuttonarray_main(int argc, char *argv[])
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
// Initialize memory monitor logic
|
||||
|
||||
|
Reference in New Issue
Block a user