changeset 685:09e338f3ebb2

int: reorder str2uXX function generation The new order matches the later ordering of the rest of the header. Signed-off-by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
author Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
date Mon, 25 Feb 2019 16:13:43 -0500
parents 41a3427cde1d
children adc02e842728
files include/jeffpc/int.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/include/jeffpc/int.h	Mon Nov 06 11:15:00 2017 -0400
+++ b/include/jeffpc/int.h	Mon Feb 25 16:13:43 2019 -0500
@@ -75,9 +75,9 @@
 	return 0;							\
 }
 
-STR_TO_INT(16, 0x000000000000fffful)
+STR_TO_INT(64, 0xffffffffffffffffull)
 STR_TO_INT(32, 0x00000000fffffffful)
-STR_TO_INT(64, 0xffffffffffffffffull)
+STR_TO_INT(16, 0x000000000000fffful)
 
 #undef STR_TO_INT