blob: ed3017792ac126e521f223c3817d7abcfc471753 [file] [log] [blame]
// Copyright 2016 The Fuchsia Authors
// Copyright (c) 2008-2012 Travis Geiselbrecht
//
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT
#ifndef ZIRCON_KERNEL_INCLUDE_SYS_TYPES_H_
#define ZIRCON_KERNEL_INCLUDE_SYS_TYPES_H_
#include <limits.h>
#include <stddef.h>
#include <stdint.h>
typedef unsigned int uint;
typedef unsigned long ulong;
typedef uintptr_t vaddr_t;
typedef uintptr_t paddr_t;
typedef intptr_t ssize_t;
#define SSIZE_MAX INTPTR_MAX
#endif // ZIRCON_KERNEL_INCLUDE_SYS_TYPES_H_