genode/repos/libports/src/lib/gcov/libc/sys/types.h
2018-11-29 11:46:01 +01:00

22 lines
394 B
C

/*
* \brief Minimal C library for libgcov
* \author Christian Prochaska
* \date 2018-11-16
*
*/
/*
* Copyright (C) 2018 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
*/
#ifndef SYS_TYPES_H
#define SYS_TYPES_H
typedef unsigned long size_t;
typedef int pid_t;
#endif