OpenCores
URL https://opencores.org/ocsvn/eco32/eco32/trunk

Subversion Repositories eco32

[/] [eco32/] [tags/] [eco32-0.22/] [disk/] [tools/] [fs-NetBSD/] [makefs/] [common.h] - Diff between revs 17 and 21

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 17 Rev 21
/*
/*
 * common.h -- common types, etc.
 * common.h -- common types, etc.
 */
 */
 
 
 
 
#ifndef _COMMON_H_
#ifndef _COMMON_H_
#define _COMMON_H_
#define _COMMON_H_
 
 
 
 
#include <errno.h>
#include <errno.h>
#include <err.h>
#include <err.h>
 
 
 
 
#ifdef __linux__
#ifdef __linux__
 
 
#include <byteswap.h>
#include <byteswap.h>
 
 
#define bswap16(a)      bswap_16(a)
#define bswap16(a)      bswap_16(a)
#define bswap32(a)      bswap_32(a)
#define bswap32(a)      bswap_32(a)
#define bswap64(a)      bswap_64(a)
#define bswap64(a)      bswap_64(a)
 
 
#endif
#endif
 
 
 
 
typedef unsigned long long uintmax_t;
typedef unsigned long long uintmax_t;
 
 
typedef unsigned long long uint64_t;
typedef unsigned long long uint64_t;
typedef unsigned int uint32_t;
typedef unsigned int uint32_t;
typedef unsigned short uint16_t;
typedef unsigned short uint16_t;
typedef unsigned char uint8_t;
typedef unsigned char uint8_t;
 
 
 
 
#define MAXPHYS         (64 * 1024)     /* max raw I/O transfer size */
#define MAXPHYS         (64 * 1024)     /* max raw I/O transfer size */
#define MAXQUOTAS       2
#define MAXQUOTAS       2
 
 
 
 
#endif /* _COMMON_H_ */
#endif /* _COMMON_H_ */
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.