summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/main.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/main.cpp b/lib/main.cpp
index 7b3da269..37f1ccce 100644
--- a/lib/main.cpp
+++ b/lib/main.cpp
@@ -1,13 +1,10 @@
#include <iostream>
-
-namespace libcamera {
+#include <libcamera/libcamera.h>
using std::cout;
using std::endl;
-void init_lib(void)
+void libcamera::init_lib(void)
{
cout << "Lib Camera Init" << endl;
}
-
-};