Changeset: 4aa28c764de0 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=4aa28c764de0
Modified Files:
        sql/backends/monet5/UDF/capi/cheader.h
Branch: jitudf
Log Message:

Use int64_t for lng instead of long long.


diffs (18 lines):

diff --git a/sql/backends/monet5/UDF/capi/cheader.h 
b/sql/backends/monet5/UDF/capi/cheader.h
--- a/sql/backends/monet5/UDF/capi/cheader.h
+++ b/sql/backends/monet5/UDF/capi/cheader.h
@@ -1,3 +1,5 @@
+
+#include <stdint.h>
 
 typedef void *(*malloc_function_ptr)(size_t);
 
@@ -40,7 +42,7 @@ DEFAULT_STRUCT_DEFINITION(signed char, b
 DEFAULT_STRUCT_DEFINITION(signed char, bte);
 DEFAULT_STRUCT_DEFINITION(short, sht);
 DEFAULT_STRUCT_DEFINITION(int, int);
-DEFAULT_STRUCT_DEFINITION(long long, lng);
+DEFAULT_STRUCT_DEFINITION(int64_t, lng);
 DEFAULT_STRUCT_DEFINITION(float, flt);
 DEFAULT_STRUCT_DEFINITION(double, dbl);
 DEFAULT_STRUCT_DEFINITION(char *, str);
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to