From bbde93dacf24ea58c7ec0588378f33cc7c769d39 Mon Sep 17 00:00:00 2001 From: "cantab.net!aia21" Date: Thu, 31 Jul 2003 14:12:36 +0000 Subject: [PATCH] Linux/types.h no longer needed at all. stdint.h only include if present. (Logical change 1.166) --- include/types.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/include/types.h b/include/types.h index 58e3d91e..5f6ae2c9 100644 --- a/include/types.h +++ b/include/types.h @@ -2,7 +2,7 @@ * types.h - Misc type definitions not related to on-disk structure. Part of * the Linux-NTFS project. * - * Copyright (c) 2000-2002 Anton Altaparmakov + * Copyright (c) 2000-2003 Anton Altaparmakov * * This program/include file is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as published @@ -23,9 +23,12 @@ #ifndef _NTFS_TYPES_H #define _NTFS_TYPES_H +#include "config.h" + +#ifdef HAVE_STDINT_H #include +#endif #include -#include typedef uint8_t u8; /* Unsigned types of an exact size */ typedef uint16_t u16;