X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=compat%2Fhave_canonicalize_file_name.c;fp=compat%2Fhave_canonicalize_file_name.c;h=24c848ec3bf5d8e21b8d8ddd1dbf908779782d44;hp=0000000000000000000000000000000000000000;hb=af5c3afa91cc29268c6754ea70f15cae30f22403;hpb=134dbadaf517c6962c2588f36f1f8782277e2f95 diff --git a/compat/have_canonicalize_file_name.c b/compat/have_canonicalize_file_name.c new file mode 100644 index 00000000..24c848ec --- /dev/null +++ b/compat/have_canonicalize_file_name.c @@ -0,0 +1,10 @@ +#define _GNU_SOURCE +#include + +int main() +{ + char *found; + char *string; + + found = canonicalize_file_name (string); +}