13 lines
110 B
C
13 lines
110 B
C
|
/*
|
||
|
Flipper devices inc.
|
||
|
|
||
|
Local fw build entry point.
|
||
|
*/
|
||
|
|
||
|
void app();
|
||
|
|
||
|
int main() {
|
||
|
app();
|
||
|
|
||
|
return 0;
|
||
|
}
|