blob: 823f3a0af827e481e9a96ac2be4934a818a3c0a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*******************************************************************/
/* slibtool: a strong libtool implementation, written in C */
/* Copyright (C) 2016--2024 SysDeer Technologies, LLC */
/* Released under the Standard MIT License; see COPYING.SLIBTOOL. */
/*******************************************************************/
#include <slibtool/slibtool.h>
#include "slibtool_realpath_impl.h"
int slbt_util_real_path(
int fdat,
const char * path,
int options,
char * buf,
size_t buflen)
{
return slbt_realpath(fdat,path,options,buf,buflen);
}
|