Problem: VMS does not have defined uintptr_t
Solution: Add type definitions (Zoltan Arpadffy)
closes: #15520
Signed-off-by: Zoltan Arpadffy <zoltan.arpadffy@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
* Currently only valid for object/container types.
* Return empty string if not an object.
*/
+#ifdef VMS // VMS does not have defined uintptr_t
+# if defined(HAVE_NO_LONG_LONG)
+typedef unsigned int uintptr_t;
+# else
+typedef unsigned long long uintptr_t;
+# endif
+#endif // VMS
+
static void
f_id(typval_T *argvars, typval_T *rettv)
{
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 680,
/**/
679,
/**/