/* * Copyright 2014 Gentoo Foundation * Distributed under the terms of the GNU General Public License v2 */staticconstchar*_basename(constchar*filename){constchar*p=strrchr(filename,'/');returnp?p+1:filename;}/* Avoid issues with clobbering C library def */#undef basename#define basename(x) _basename(x)