~vcs-imports/busybox/trunk

« back to all changes in this revision

Viewing changes to libbb/const_hack.c

  • Committer: Denys Vlasenko
  • Author(s): Christian Franke
  • Date: 2023-11-13 10:32:35 UTC
  • Revision ID: git-v1:a63b60bdd6fa26b867c80d44074118babbae7ffd
Cygwin: regenerate defconfig

Signed-off-by: Christian Franke <christian.franke@t-online.de>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* vi: set sw=4 ts=4: */
 
2
/*
 
3
 * Trick to assign a const ptr with barrier for clang
 
4
 *
 
5
 * Copyright (C) 2021 by YU Jincheng <shana@zju.edu.cn>
 
6
 *
 
7
 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
 
8
 */
 
9
#include "libbb.h"
 
10
 
 
11
#if defined(__clang_major__) && __clang_major__ >= 9
 
12
void FAST_FUNC XZALLOC_CONST_PTR(const void *pptr, size_t size)
 
13
{
 
14
        ASSIGN_CONST_PTR(pptr, xzalloc(size));
 
15
}
 
16
#endif