mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 08:13:38 -05:00
after similar calls related to struct pwd in libutil/pw_util.c:
- gr_equal()
Perform a deep comparison of two struct grp's. It does a thorough, yet
unoptimized comparison of all the members regardless of order.
- gr_make()
Create a string (see group(5)) from a struct grp.
- gr_dup()
Duplicate a struct grp. Returns a value that is a single contiguous
block of memory.
- gr_scan()
Create a struct grp from a string (as produced by gr_make()).
MFC after: 3 weeks
12 lines
221 B
Makefile
12 lines
221 B
Makefile
# $FreeBSD$
|
|
|
|
TESTS= test-trimdomain test-trimdomain-nodomain test-flopen test-grp
|
|
CFLAGS+= -g -Wall -lutil
|
|
|
|
.PHONY: tests
|
|
tests: ${TESTS}
|
|
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
-rm -f ${TESTS}
|