diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-05-05 20:25:53 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-05-06 01:17:30 -0400 |
commit | 3969cb2a85d798cd029043566d97aad66dcee8e5 (patch) | |
tree | 70121111ffa07603876569364638b5a9884afc22 /src/test | |
parent | b5917a817c697fa284462319357f5fac45c462f0 (diff) |
split out librc-independent helpers into a dedicated header file
Many of these helpers are not special to librc, so split them out so they
can be used in all source trees (including libeinfo).
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'src/test')
-rwxr-xr-x | src/test/runtests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/runtests.sh b/src/test/runtests.sh index a4b3f189..5a87c847 100755 --- a/src/test/runtests.sh +++ b/src/test/runtests.sh @@ -93,7 +93,7 @@ ebegin "Checking for x* func usage" out=$(cd ${top_srcdir}; find src -name '*.[ch]' \ -exec grep -n -E '\<(malloc|strdup)[[:space:]]*\(' {} + \ | grep -v \ - -e src/includes/rc-misc.h \ + -e src/includes/helpers.h \ -e src/libeinfo/libeinfo.c) [ -z "${out}" ] eend $? "These need to be using the x* variant:"$'\n'"${out}" |