diff options
author | Richard Jones <rjones@redhat.com> | 2009-11-10 17:09:12 +0000 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2009-11-10 17:09:12 +0000 |
commit | ade327a7af869d4d70e28e2a596473943e0299dd (patch) | |
tree | 983718c4c6c09af2f76d8a6576848fcbfda9cd0d /capitests/test-command.c | |
parent | 3833ddc6566f92783dc5a8894383c304e3d2c0b4 (diff) | |
download | libguestfs-ade327a7af869d4d70e28e2a596473943e0299dd.tar.gz libguestfs-ade327a7af869d4d70e28e2a596473943e0299dd.tar.xz libguestfs-ade327a7af869d4d70e28e2a596473943e0299dd.zip |
Don't export STREQ and friends in <guestfs.h>
Move these to private header file(s) and other places as required
since these aren't part of the public API.
Diffstat (limited to 'capitests/test-command.c')
-rw-r--r-- | capitests/test-command.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/capitests/test-command.c b/capitests/test-command.c index c43353d4..7a3e64bd 100644 --- a/capitests/test-command.c +++ b/capitests/test-command.c @@ -26,6 +26,9 @@ #include <string.h> #include <unistd.h> +/* Get STREQ etc */ +#include "../src/guestfs-internal.h" + int main (int argc, char *argv[]) { |