home *** CD-ROM | disk | FTP | other *** search
/ RISCWORLD 7 / RISCWORLD_VOL7.iso / Software / Issue4 / IYONIX / MANICMINER / SOURCE.ZIP / manicminer-1.6.3 / systems / riscos / h / stdint < prev   
Encoding:
Text File  |  2000-12-03  |  1.7 KB  |  61 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. /* long long removed (not recognised by Acorn C) */
  21.  
  22. /* Signed.  */
  23.  
  24. #ifndef __int8_t_defined
  25. # define __int8_t_defined
  26. typedef signed char int8_t;
  27. typedef short int int16_t;
  28. typedef int int32_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.  
  37. /* Small types.  */
  38.  
  39. /* Signed.  */
  40. typedef signed char int_least8_t;
  41. typedef short int int_least16_t;
  42. typedef int int_least32_t;
  43.  
  44. /* Unsigned.  */
  45. typedef unsigned char uint_least8_t;
  46. typedef unsigned short int uint_least16_t;
  47. typedef unsigned int uint_least32_t;
  48.  
  49.  
  50. /* Fast types.  */
  51.  
  52. /* Signed.  */
  53. typedef signed char int_fast8_t;
  54. typedef int int_fast16_t;
  55. typedef int int_fast32_t;
  56.  
  57. /* Unsigned.  */
  58. typedef unsigned char uint_fast8_t;
  59. typedef unsigned int uint_fast16_t;
  60. typedef unsigned int uint_fast32_t;
  61.