aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain-API/example-app/src/main/java/org
diff options
context:
space:
mode:
authorDaniel Haß <daniel.hass@stzedn.de>2014-02-20 22:29:08 +0100
committerDaniel Haß <daniel.hass@stzedn.de>2014-02-20 22:29:08 +0100
commitd150e60348fd16c5e297712828c7a5f8d9d7b6d8 (patch)
tree1d2ff439b1064fca3e4ea26e37a8d1b956350261 /OpenPGP-Keychain-API/example-app/src/main/java/org
parentcff704d4a24aef6b4fa6abb5ef27b10e95852af6 (diff)
downloadopen-keychain-d150e60348fd16c5e297712828c7a5f8d9d7b6d8.tar.gz
open-keychain-d150e60348fd16c5e297712828c7a5f8d9d7b6d8.tar.bz2
open-keychain-d150e60348fd16c5e297712828c7a5f8d9d7b6d8.zip
Fixed the typo and whitespace issue
Diffstat (limited to 'OpenPGP-Keychain-API/example-app/src/main/java/org')
0 files changed, 0 insertions, 0 deletions
0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#ifndef _POSIX_LIMITS_H
#define _POSIX_LIMITS_H

#include <mini-os/arch_limits.h>

#define CHAR_BIT        8

#define SCHAR_MAX       0x7f
#define SCHAR_MIN       (-SCHAR_MAX-1)
#define UCHAR_MAX       0xff

#ifdef __CHAR_UNSIGNED__
# define CHAR_MIN       0
# define CHAR_MAX       UCHAR_MAX
#else
# define CHAR_MIN       SCHAR_MIN
# define CHAR_MAX       SCHAR_MAX
#endif

#define INT_MAX         0x7fffffff
#define INT_MIN         (-INT_MAX-1)
#define UINT_MAX        0xffffffff

#define SHRT_MIN	(-0x8000)
#define SHRT_MAX        0x7fff
#define USHRT_MAX       0xffff

#if defined(__x86_64__) || defined(__ia64__)
# define LONG_MAX       0x7fffffffffffffffL
# define ULONG_MAX      0xffffffffffffffffUL
#else
# define LONG_MAX       0x7fffffffL
# define ULONG_MAX      0xffffffffUL
#endif
#define LONG_MIN        (-LONG_MAX-1L)

#define LLONG_MAX       0x7fffffffffffffffLL
#define LLONG_MIN       (-LLONG_MAX-1LL)
#define ULLONG_MAX      0xffffffffffffffffULL

#define LONG_LONG_MIN   LLONG_MIN
#define LONG_LONG_MAX   LLONG_MAX
#define ULONG_LONG_MAX  ULLONG_MAX

#define PATH_MAX __PAGE_SIZE
#define PAGE_SIZE __PAGE_SIZE

#endif /* _POSIX_LIMITS_H */