Index: src/libcfa/gmp
===================================================================
--- src/libcfa/gmp	(revision 1ae39f6ef81b096e92a97cbb3424c6cd48b4414b)
+++ src/libcfa/gmp	(revision 982832e24b58f99cf8d892fbb03bfd2c5cd57b15)
@@ -10,6 +10,6 @@
 // Created On       : Tue Apr 19 08:43:43 2016
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Aug 24 09:24:51 2017
-// Update Count     : 16
+// Last Modified On : Mon Sep  4 09:54:33 2017
+// Update Count     : 20
 //
 
@@ -32,4 +32,9 @@
 static inline void ?{}( Int & this, const char * val ) { if ( mpz_init_set_str( this.mpz, val, 0 ) ) abort(); }
 static inline void ^?{}( Int & this ) { mpz_clear( this.mpz ); }
+
+// literal
+static inline Int ?`mp( signed long int init ) { return (Int){ init }; }
+static inline Int ?`mp( unsigned long int init ) { return (Int){ init }; }
+static inline Int ?`mp( const char * init ) { return (Int){ init }; }
 
 // assignment
