blob: 01df1c172c6c01c4f1a67282f79d3dc229bb19df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef SLIBTOOL_REALPATH_IMPL_H
#define SLIBTOOL_REALPATH_IMPL_H
#include <stdlib.h>
int slbt_realpath(
int fdat,
const char * path,
int options,
char * buf,
size_t buflen);
#endif
|