Skip to content

Commit 2f4f67f

Browse files
author
Зишан Мирза
committed
format code with clang-format
1 parent 197f8d6 commit 2f4f67f

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

libc/test/src/time/asctime_r_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#include <stddef.h>
109
#include "src/errno/libc_errno.h"
1110
#include "src/time/asctime_r.h"
1211
#include "src/time/time_utils.h"
1312
#include "src/time/timezone.h"
1413
#include "test/UnitTest/Test.h"
1514
#include "test/src/time/TmHelper.h"
15+
#include <stddef.h>
1616

1717
using LIBC_NAMESPACE::time_utils::TimeConstants;
1818

libc/test/src/time/asctime_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#include <stddef.h>
109
#include "src/errno/libc_errno.h"
1110
#include "src/time/time_utils.h"
1211
#include "src/time/timezone.h"
1312
#include "test/UnitTest/Test.h"
1413
#include "test/src/time/TmHelper.h"
14+
#include <stddef.h>
1515

1616
static inline char *call_asctime(struct tm *tm_data, int year, int month,
1717
int mday, int hour, int min, int sec, int wday,

libc/test/src/time/ctime_r_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#include <stddef.h>
109
#include "src/errno/libc_errno.h"
1110
#include "src/time/ctime_r.h"
1211
#include "src/time/time_utils.h"
1312
#include "src/time/timezone.h"
1413
#include "test/UnitTest/Test.h"
1514
#include "test/src/time/TmHelper.h"
15+
#include <stddef.h>
1616

1717
using LIBC_NAMESPACE::time_utils::TimeConstants;
1818

libc/test/src/time/ctime_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#include <stddef.h>
109
#include "src/errno/libc_errno.h"
1110
#include "src/time/ctime.h"
1211
#include "src/time/timezone.h"
1312
#include "test/UnitTest/Test.h"
1413
#include "test/src/time/TmHelper.h"
14+
#include <stddef.h>
1515

1616
TEST(LlvmLibcCtime, NULL) {
1717
char *result;

libc/test/src/time/localtime_r_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#include <stddef.h>
109
#include "src/time/localtime_r.h"
1110
#include "src/time/time_utils.h"
1211
#include "src/time/timezone.h"
1312
#include "test/UnitTest/Test.h"
13+
#include <stddef.h>
1414

1515
// TODO: remove this header file
1616
#include <string.h>

libc/test/src/time/localtime_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#include <stddef.h>
109
#include "src/time/localtime.h"
1110
#include "src/time/timezone.h"
1211
#include "test/UnitTest/Test.h"
12+
#include <stddef.h>
1313

1414
// TODO: remove this header file
1515
#include <string.h>

0 commit comments

Comments
 (0)