blob: 8a84cc2d1de306e7fd752717c4ffedb82d6808dc (
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_au_output_mapfile(const struct slbt_archive_meta * meta)
{
return slbt_ar_create_mapfile(meta,0,0);
}
|