mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-29 15:44:02 +00:00
fab7b514e3
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.
26 lines
526 B
C++
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_ */
|