home *** CD-ROM | disk | FTP | other *** search
/ RISCWORLD 7 / RISCWORLD_VOL7.iso / Software / Issue4 / IYONIX / MANICMINER / SOURCE.ZIP / manicminer-1.6.3 / systems / msdos / h / stdint
Encoding:
Text File  |  2000-12-01  |  1.9 KB  |  66 lines

  1. /* Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
  2.    This file is part of the GNU C Library.
  3.  
  4.    The GNU C Library is free software; you can redistribute it and/or
  5.    modify it under the terms of the GNU Library General Public License as
  6.    published by the Free Software Foundation; either version 2 of the
  7.    License, or (at your option) any later version.
  8.  
  9.    The GNU C Library is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.    Library General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU Library General Public
  15.    License along with the GNU C Library; see the file COPYING.LIB.  If not,
  16.    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  17.    Boston, MA 02111-1307, USA.  */
  18.  
  19. /* Exact integral types.  */
  20.  
  21. /* Signed.  */
  22.  
  23. #ifndef __int8_t_defined
  24. # define __int8_t_defined
  25. typedef signed char int8_t;
  26. typedef short int int16_t;
  27. typedef int int32_t;
  28. typedef long long int int64_t;
  29. #endif
  30.  
  31. /* Unsigned.  */
  32.  
  33. typedef unsigned char uint8_t;
  34. typedef unsigned short int uint16_t;
  35. typedef unsigned int uint32_t;
  36. typedef unsigned long long int uint64_t;
  37.  
  38. /* Small types.  */
  39.  
  40. /* Signed.  */
  41. typedef signed char int_least8_t;
  42. typedef short int int_least16_t;
  43. typedef int int_least32_t;
  44. typedef long long int int_least64_t;
  45.  
  46. /* Unsigned.  */
  47. typedef unsigned char uint_least8_t;
  48. typedef unsigned short int uint_least16_t;
  49. typedef unsigned int uint_least32_t;
  50. typedef unsigned long long int uint_least64_t;
  51.  
  52.  
  53. /* Fast types.  */
  54.  
  55. /* Signed.  */
  56. typedef signed char int_fast8_t;
  57. typedef int int_fast16_t;
  58. typedef int int_fast32_t;
  59. typedef long long int int_fast64_t;
  60.  
  61. /* Unsigned.  */
  62. typedef unsigned char uint_fast8_t;
  63. typedef unsigned int uint_fast16_t;
  64. typedef unsigned int uint_fast32_t;
  65. typedef unsigned long long int uint_fast64_t;
  66.