Skip to content

Commit

Permalink
Changing long to int for consistency.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185656 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
AaronBallman committed Jul 4, 2013
1 parent 1e9ddc2 commit 764a3d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/llvm/Support/DataTypes.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ typedef unsigned char uint8_t;
#if defined(_WIN64)
typedef signed __int64 ssize_t;
#else
typedef signed long ssize_t;
typedef signed int ssize_t;
#endif

#ifndef INT8_MAX
Expand Down

0 comments on commit 764a3d5

Please sign in to comment.