blob: cba5ac4bd9f6000bb967506c1de615d40ab5538e (
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--2025 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);
}
|