mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-03-28 19:20:54 +00:00
19 lines
257 B
C
19 lines
257 B
C
/*
|
|
* main.c
|
|
*
|
|
* Simple tests
|
|
*
|
|
* Created by Matthias Ringwald on 4/29/09.
|
|
*/
|
|
|
|
#include "daemon.h"
|
|
|
|
int main (int argc, const char * argv[]) {
|
|
|
|
// start daemon
|
|
daemon_main(argc, argv);
|
|
|
|
// daemon does not returs so far
|
|
return 0;
|
|
}
|