genode/ports/src/noux/path.h
Norman Feske fab7b514e3 Move path utility from noux to 'os/include/os'
It turns out that the path-handling utility is valuable not only for
Noux. By moving it to a public header, we can use it for the libc.
2012-08-16 10:03:06 +02:00

26 lines
526 B
C++

/*
* \brief Path handling utility for Noux
* \author Norman Feske
* \date 2011-02-17
*/
/*
* Copyright (C) 2011-2012 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#ifndef _NOUX__PATH_H_
#define _NOUX__PATH_H_
/* Genode includes */
#include <os/path.h>
/* Noux includes */
#include <noux_session/sysio.h>
namespace Noux { typedef Path<Sysio::MAX_PATH_LEN> Absolute_path; }
#endif /* _NOUX__PATH_H_ */