summaryrefslogtreecommitdiffhomepage
path: root/aux/ar-lib
blob: 16484441e99977c3fd89b96fb1649eb6abef3132 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh

#####################################################################
##  slibtool: a strong libtool implementation, written in C        ##
##  Copyright (C) 2016--2025  SysDeer Technologies, LLC            ##
##  Released under the Standard MIT License; see COPYING.SLIBTOOL. ##
#####################################################################

#####################################################################
## ar-lib: a placeholder script, currently not implemented         ##
## -------------------------------------------------------         ##
#####################################################################

set -eu

error_msg()
{
	printf '%s\n' "$@" >&2
}

error_not_implemented()
{
	error_msg 'ar-lib: this script is a placeholder.'
	exit 2
}

error_not_implemented