@@ -267,12 +267,10 @@ ecpg_get_data(const PGresult *results, int act_tuple, int act_field, int lineno,
267
267
case ECPGt_unsigned_long :
268
268
* ((long * ) (ind + ind_offset * act_tuple ))= value_for_indicator ;
269
269
break ;
270
- #ifdef HAVE_LONG_LONG_INT
271
270
case ECPGt_long_long :
272
271
case ECPGt_unsigned_long_long :
273
272
* ((long longint * ) (ind + ind_offset * act_tuple ))= value_for_indicator ;
274
273
break ;
275
- #endif /* HAVE_LONG_LONG_INT */
276
274
case ECPGt_NO_INDICATOR :
277
275
if (value_for_indicator == -1 )
278
276
{
@@ -355,12 +353,10 @@ ecpg_get_data(const PGresult *results, int act_tuple, int act_field, int lineno,
355
353
case ECPGt_unsigned_long :
356
354
* ((long * ) (ind + ind_offset * act_tuple ))= size ;
357
355
break ;
358
- #ifdef HAVE_LONG_LONG_INT
359
356
case ECPGt_long_long :
360
357
case ECPGt_unsigned_long_long :
361
358
* ((long longint * ) (ind + ind_offset * act_tuple ))= size ;
362
359
break ;
363
- #endif /* HAVE_LONG_LONG_INT */
364
360
default :
365
361
break ;
366
362
}
@@ -442,7 +438,6 @@ ecpg_get_data(const PGresult *results, int act_tuple, int act_field, int lineno,
442
438
}
443
439
break ;
444
440
445
- #ifdef HAVE_LONG_LONG_INT
446
441
#ifdef HAVE_STRTOLL
447
442
case ECPGt_long_long :
448
443
* ((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,
467
462
468
463
break ;
469
464
#endif /* HAVE_STRTOULL */
470
- #endif /* HAVE_LONG_LONG_INT */
471
465
472
466
case ECPGt_float :
473
467
case ECPGt_double :
@@ -559,12 +553,10 @@ ecpg_get_data(const PGresult *results, int act_tuple, int act_field, int lineno,
559
553
case ECPGt_unsigned_long :
560
554
* ((long * ) (ind + ind_offset * act_tuple ))= rcv_size ;
561
555
break ;
562
- #ifdef HAVE_LONG_LONG_INT
563
556
case ECPGt_long_long :
564
557
case ECPGt_unsigned_long_long :
565
558
* ((long longint * ) (ind + ind_offset * act_tuple ))= rcv_size ;
566
559
break ;
567
- #endif /* HAVE_LONG_LONG_INT */
568
560
default :
569
561
break ;
570
562
}
@@ -623,12 +615,10 @@ ecpg_get_data(const PGresult *results, int act_tuple, int act_field, int lineno,
623
615
case ECPGt_unsigned_long :
624
616
* ((long * ) (ind + ind_offset * act_tuple ))= -1 ;
625
617
break ;
626
- #ifdef HAVE_LONG_LONG_INT
627
618
case ECPGt_long_long :
628
619
case ECPGt_unsigned_long_long :
629
620
* ((long longint * ) (ind + ind_offset * act_tuple ))= -1 ;
630
621
break ;
631
- #endif /* HAVE_LONG_LONG_INT */
632
622
default :
633
623
break ;
634
624
}
@@ -678,12 +668,10 @@ ecpg_get_data(const PGresult *results, int act_tuple, int act_field, int lineno,
678
668
case ECPGt_unsigned_long :
679
669
* ((long * ) (ind + ind_offset * act_tuple ))= size ;
680
670
break ;
681
- #ifdef HAVE_LONG_LONG_INT
682
671
case ECPGt_long_long :
683
672
case ECPGt_unsigned_long_long :
684
673
* ((long longint * ) (ind + ind_offset * act_tuple ))= size ;
685
674
break ;
686
- #endif /* HAVE_LONG_LONG_INT */
687
675
default :
688
676
break ;
689
677
}
@@ -723,12 +711,10 @@ ecpg_get_data(const PGresult *results, int act_tuple, int act_field, int lineno,
723
711
case ECPGt_unsigned_long :
724
712
* ((long * ) (ind + ind_offset * act_tuple ))= variable -> len ;
725
713
break ;
726
- #ifdef HAVE_LONG_LONG_INT
727
714
case ECPGt_long_long :
728
715
case ECPGt_unsigned_long_long :
729
716
* ((long longint * ) (ind + ind_offset * act_tuple ))= variable -> len ;
730
717
break ;
731
- #endif /* HAVE_LONG_LONG_INT */
732
718
default :
733
719
break ;
734
720
}