fix: Disable warnings for GNU extensions on Clang
[lttng-ust.git] / src / common / patient.h
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 */
6
7 #ifndef _UST_COMMON_PATIENT_H
8 #define _UST_COMMON_PATIENT_H
9
10 #include <stdlib.h>
11 #include <sys/uio.h>
12
13 ssize_t ust_patient_write(int fd, const void *buf, size_t count)
14 __attribute__((visibility("hidden")));
15
16 ssize_t ust_patient_writev(int fd, struct iovec *iov, int iovcnt)
17 __attribute__((visibility("hidden")));
18
19 ssize_t ust_patient_send(int fd, const void *buf, size_t count, int flags)
20 __attribute__((visibility("hidden")));
21
22 #endif /* _UST_COMMON_PATIENT_H */
This page took 0.029327 seconds and 4 git commands to generate.