Skip to content

Commit 46d9f09

Browse files
committed
[libc] add header to memalignment.cpp
1 parent e8c38bd commit 46d9f09

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

libc/src/stdlib/memalignment.cpp

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
1+
//===-- Implementation for memalignment -------------------------*- C++ -*-===//
2+
//
3+
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4+
// See https://llvm.org/LICENSE.txt for license information.
5+
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6+
//
7+
//===----------------------------------------------------------------------===//
8+
19
#include "src/stdlib/memalignment.h"
2-
#include "src/__support/macros/config.h"
310
#include "src/__support/CPP/bit.h"
11+
#include "src/__support/common.h"
12+
#include "src/__support/macros/config.h"
13+
414
namespace LIBC_NAMESPACE_DECL {
515

616
LLVM_LIBC_FUNCTION(size_t, memalignment, (const void *p)) {

0 commit comments

Comments
 (0)