mirror of
https://github.com/netdata/libbpf.git
synced 2026-03-25 18:59:06 +08:00
12 lines
190 B
C
12 lines
190 B
C
|
|
/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
|
||
|
|
|
||
|
|
#ifndef __LINUX_ERR_H
|
||
|
|
#define __LINUX_ERR_H
|
||
|
|
|
||
|
|
static inline void * ERR_PTR(long error_)
|
||
|
|
{
|
||
|
|
return (void *) error_;
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|