mirror of
https://github.com/mpv-player/mpv
synced 2024-12-15 19:35:49 +00:00
baee7815d5
Leading underscores are reserved for system identifiers. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25579 b3059339-0415-0410-9bf9-f77b7e298cf2
9 lines
141 B
C
9 lines
141 B
C
#ifndef MMAP_ANON_H
|
|
#define MMAP_ANON_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
void *mmap_anon(void *, size_t, int, int, off_t);
|
|
|
|
#endif /* MMAP_ANON_H */
|