@@ -267,12 +267,10 @@ ecpg_get_data(const PGresult *results, int act_tuple, int act_field, int lineno,
267267case ECPGt_unsigned_long :
268268* ((long * ) (ind + ind_offset * act_tuple ))= value_for_indicator ;
269269break ;
270- #ifdef HAVE_LONG_LONG_INT
271270case ECPGt_long_long :
272271case ECPGt_unsigned_long_long :
273272* ((long longint * ) (ind + ind_offset * act_tuple ))= value_for_indicator ;
274273break ;
275- #endif /* HAVE_LONG_LONG_INT */
276274case ECPGt_NO_INDICATOR :
277275if (value_for_indicator == -1 )
278276{
@@ -355,12 +353,10 @@ ecpg_get_data(const PGresult *results, int act_tuple, int act_field, int lineno,
355353case ECPGt_unsigned_long :
356354* ((long * ) (ind + ind_offset * act_tuple ))= size ;
357355break ;
358- #ifdef HAVE_LONG_LONG_INT
359356case ECPGt_long_long :
360357case ECPGt_unsigned_long_long :
361358* ((long longint * ) (ind + ind_offset * act_tuple ))= size ;
362359break ;
363- #endif /* HAVE_LONG_LONG_INT */
364360default :
365361break ;
366362}
@@ -442,7 +438,6 @@ ecpg_get_data(const PGresult *results, int act_tuple, int act_field, int lineno,
442438}
443439break ;
444440
445- #ifdef HAVE_LONG_LONG_INT
446441#ifdef HAVE_STRTOLL
447442case ECPGt_long_long :
448443* ((long longint * ) (var + offset * act_tuple ))= strtoll (pval ,& scan_length ,10 );
@@ -467,7 +462,6 @@ ecpg_get_data(const PGresult *results, int act_tuple, int act_field, int lineno,
467462
468463break ;
469464#endif /* HAVE_STRTOULL */
470- #endif /* HAVE_LONG_LONG_INT */
471465
472466case ECPGt_float :
473467case ECPGt_double :
@@ -559,12 +553,10 @@ ecpg_get_data(const PGresult *results, int act_tuple, int act_field, int lineno,
559553case ECPGt_unsigned_long :
560554* ((long * ) (ind + ind_offset * act_tuple ))= rcv_size ;
561555break ;
562- #ifdef HAVE_LONG_LONG_INT
563556case ECPGt_long_long :
564557case ECPGt_unsigned_long_long :
565558* ((long longint * ) (ind + ind_offset * act_tuple ))= rcv_size ;
566559break ;
567- #endif /* HAVE_LONG_LONG_INT */
568560default :
569561break ;
570562}
@@ -623,12 +615,10 @@ ecpg_get_data(const PGresult *results, int act_tuple, int act_field, int lineno,
623615case ECPGt_unsigned_long :
624616* ((long * ) (ind + ind_offset * act_tuple ))= -1 ;
625617break ;
626- #ifdef HAVE_LONG_LONG_INT
627618case ECPGt_long_long :
628619case ECPGt_unsigned_long_long :
629620* ((long longint * ) (ind + ind_offset * act_tuple ))= -1 ;
630621break ;
631- #endif /* HAVE_LONG_LONG_INT */
632622default :
633623break ;
634624}
@@ -678,12 +668,10 @@ ecpg_get_data(const PGresult *results, int act_tuple, int act_field, int lineno,
678668case ECPGt_unsigned_long :
679669* ((long * ) (ind + ind_offset * act_tuple ))= size ;
680670break ;
681- #ifdef HAVE_LONG_LONG_INT
682671case ECPGt_long_long :
683672case ECPGt_unsigned_long_long :
684673* ((long longint * ) (ind + ind_offset * act_tuple ))= size ;
685674break ;
686- #endif /* HAVE_LONG_LONG_INT */
687675default :
688676break ;
689677}
@@ -723,12 +711,10 @@ ecpg_get_data(const PGresult *results, int act_tuple, int act_field, int lineno,
723711case ECPGt_unsigned_long :
724712* ((long * ) (ind + ind_offset * act_tuple ))= variable -> len ;
725713break ;
726- #ifdef HAVE_LONG_LONG_INT
727714case ECPGt_long_long :
728715case ECPGt_unsigned_long_long :
729716* ((long longint * ) (ind + ind_offset * act_tuple ))= variable -> len ;
730717break ;
731- #endif /* HAVE_LONG_LONG_INT */
732718default :
733719break ;
734720}