File: mocks-stdlib.h

package info (click to toggle)
rpma 1.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 3,040 kB
  • sloc: ansic: 27,313; sh: 1,805; perl: 1,148; makefile: 8
file content (16 lines) | stat: -rw-r--r-- 268 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: BSD-3-Clause */
/* Copyright 2020-2021, Intel Corporation */

/*
 * mocks-stdlib.h -- the stdlib mocks' header
 */

#ifndef MOCKS_STDLIB_H
#define MOCKS_STDLIB_H

struct mmap_args {
	void *addr;
	size_t len;
};

#endif /* MOCKS_STDLIB_H */