mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-12 14:12:27 +00:00
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;
|
||
|
}
|