Blame src/util/slbt_realpath.c

9ca35b
/*******************************************************************/
eac61a
/*  slibtool: a strong libtool implementation, written in C        */
49181b
/*  Copyright (C) 2016--2024  SysDeer Technologies, LLC            */
9ca35b
/*  Released under the Standard MIT License; see COPYING.SLIBTOOL. */
9ca35b
/*******************************************************************/
9ca35b
7004af
#include <slibtool/slibtool.h>
d4b2a5
#include "slibtool_realpath_impl.h"
fbce8b
81e063
int slbt_util_real_path(
9ca35b
	int             fdat,
9ca35b
	const char *    path,
9ca35b
	int             options,
9ca35b
	char *          buf,
9ca35b
	size_t          buflen)
9ca35b
{
d4b2a5
	return slbt_realpath(fdat,path,options,buf,buflen);
9ca35b
}