summaryrefslogtreecommitdiff
path: root/src/libcamera/log.cpp
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-10-23 14:31:13 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-10-23 17:39:39 +0300
commitca260d2f5337536e30d1b2501434bd2a93a3e72e (patch)
tree7a8af9ad83101ceaae165614c6ae525f4499086f /src/libcamera/log.cpp
parentbb5f8cf4951fc5813d60ab806c57c5b5d713f38c (diff)
libcamera: Standardise on C compatibility headers
Now that our usage of C compatibility header is documented, use them consistently through the source code. While at it, group the C and C++ include statements as defined in the coding style, and fix a handful of #include ordering issues. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Diffstat (limited to 'src/libcamera/log.cpp')
-rw-r--r--src/libcamera/log.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libcamera/log.cpp b/src/libcamera/log.cpp
index 51f9f86b..50f345b9 100644
--- a/src/libcamera/log.cpp
+++ b/src/libcamera/log.cpp
@@ -7,14 +7,14 @@
#include "log.h"
-#include <cstdio>
-#include <cstdlib>
-#include <ctime>
#include <fstream>
#include <iostream>
#include <list>
+#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
#include <syslog.h>
+#include <time.h>
#include <unordered_set>
#include <libcamera/logging.h>