//util.c: #include /** Return the binary file name of the current process. This is not * supported on all architectures, in which case NULL is returned. */ char *pa_get_binary_name(char *s, size_t l) { return NULL; } /** Return a pointer to the filename inside a path (which is the last * component). */ const char *pa_path_get_filename(const char *p) { char * r; if ( (r = strrchr(p, '/')) ) { return (const char *) r+1; } else { return p; } } //ll