mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
16 lines
303 B
C
16 lines
303 B
C
|
/* ==== uio.h ============================================================
|
||
|
* Copyright (c) 1994 by Chris Provenzano, proven@athena.mit.edu
|
||
|
*
|
||
|
* Description : Correct Linux header file.
|
||
|
*/
|
||
|
|
||
|
#ifndef _PTHREAD_UIO_H_
|
||
|
#define _PTHREAD_UIO_H_
|
||
|
|
||
|
struct iovec {
|
||
|
void *iov_base;
|
||
|
size_t iov_len;
|
||
|
};
|
||
|
|
||
|
#endif
|