Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
compiler
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
17
Issues
17
List
Boards
Labels
Service Desk
Milestones
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
clean-compiler-and-rts
compiler
Commits
29c1a0d6
Commit
29c1a0d6
authored
May 10, 2006
by
John van Groningen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
port to 64 bit windows and linux
parent
6ae17248
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
main/Unix/ipc.c
main/Unix/ipc.c
+6
-1
No files found.
main/Unix/ipc.c
View file @
29c1a0d6
...
@@ -13,7 +13,12 @@
...
@@ -13,7 +13,12 @@
Clean string
Clean string
============
============
*/
*/
typedef
struct
clean_string
{
int
length
;
char
chars
[
1
];
}
*
CleanString
;
#ifdef _WIN64
typedef
struct
clean_string
{
__int64
length
;
char
chars
[
1
];
}
*
CleanString
;
#else
typedef
struct
clean_string
{
long
length
;
char
chars
[
1
];
}
*
CleanString
;
#endif
# define Clean(ignore)
# define Clean(ignore)
# include "ipc.h"
# include "ipc.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment