aboutsummaryrefslogtreecommitdiffhomepage
path: root/compat/have_canonicalize_file_name.c
blob: 24c848ec3bf5d8e21b8d8ddd1dbf908779782d44 (plain)
1
2
3
4
5
6
7
8
9
10
#define _GNU_SOURCE
#include <stdlib.h>

int main()
{
    char *found;
    char *string;

    found = canonicalize_file_name (string);
}