blob: 8a178c49aa77cc229d739f1c3c5c4ad4933adccb (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#ifndef CREALPATH_H
#define CREALPATH_H
/* Custom implementation of a GNU's realpath(1)-like function that
* does not require GNU extensions. */
char *crealpath(const char *path);
#endif
|