Parallel
multi64.txt
Associated article: Multiplatform Porting to 64 Bits
Tags: Parallel Design
Published source code accompanying the article by Brad Martin, Anita Rettinger, and Jasmit Singh in which they discuss porting 300,000 lines of 32-bit code to nearly a dozen 64-bit platforms.
Multi-Platform Porting to 64-Bits
by Brad Martin, Anita Rettinger, and Jasmit Singh
Listing One
#include <stdlib.h>
#include <stdio.h>
int Func1(char *);
int main()
{
long arg, ret;
arg = 247;
ret = Func1((char *)&arg);
printf("%...


