Files
sudo/plugins/sudoers/testsudoers_pwutil.c
Todd C. Miller e343e07543 Use #include <foo.h> instead of #include "foo.h" in most cases.
We rely on the include path to find many of these headers.  It
especially doesn't make sense to use #include "foo.h" for headers
in the top-level include directory.
2023-09-25 10:13:28 -06:00

11 lines
267 B
C

/*
* Build pwutil_impl.c with a function prefix of "testsudoers_" instead
* of "sudo_" and call our custom getpwnam/getpwuid/getgrnam/getgrgid.
*/
#define PWUTIL_PREFIX testsudoers
#include <testsudoers_pwutil.h>
#include <tsgetgrpw.h>
#include "pwutil_impl.c"