mirror of
https://github.com/libretro/cpp-cheat.git
synced 2025-04-13 08:40:27 +00:00
16 lines
302 B
C
16 lines
302 B
C
/*
|
|
# Pointer to int typecasts
|
|
|
|
Implementation defined.
|
|
|
|
http://stackoverflow.com/questions/7677919/unexpected-sign-extension-of-int32-or-32bit-pointer-when-converted-to-uint64
|
|
|
|
TODO convert forward and back guaranteed equal?
|
|
*/
|
|
|
|
#include "common.h"
|
|
|
|
int main() {
|
|
return EXIT_SUCCESS;
|
|
}
|