blob: 43542d984e2d956bbd5317c3954969ab5309fc66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*******************************************************************/
/* slibtool: a skinny 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);
}
|