blob: 49e50ed488ac7d70d2a990066c2ad9fbf41d3787 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*******************************************************************/
/* 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>
int slbt_output_mapfile(const struct slbt_symlist_ctx * sctx)
{
return slbt_util_create_mapfile(sctx,0,0);
}
|