diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2006-01-12 10:37:33 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2006-01-12 10:37:33 +0000 |
commit | 03a9a972ce256129d304d973dd0e1100b1df6190 (patch) | |
tree | 6ee92ae241aa929381b06d7da462e7fd0cd3b0a6 | |
parent | 749646d30eb3cefd0df6cbd29f1af6b6b29f745b (diff) | |
download | drakx-03a9a972ce256129d304d973dd0e1100b1df6190.tar drakx-03a9a972ce256129d304d973dd0e1100b1df6190.tar.gz drakx-03a9a972ce256129d304d973dd0e1100b1df6190.tar.bz2 drakx-03a9a972ce256129d304d973dd0e1100b1df6190.tar.xz drakx-03a9a972ce256129d304d973dd0e1100b1df6190.zip |
replacing double with NV as suggested by rafael:
NV is the portable typedef perl's Configure figures out for floating point
values. And since it's an internal type the typemap is easier. See:
$ perl -V:nvtype
nvtype='double';
-rw-r--r-- | perl-install/c/stuff.xs.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/c/stuff.xs.pl b/perl-install/c/stuff.xs.pl index 4a1f845c2..6117705d6 100644 --- a/perl-install/c/stuff.xs.pl +++ b/perl-install/c/stuff.xs.pl @@ -226,7 +226,7 @@ floppy_info(name) OUTPUT: RETVAL -double +NV total_sectors(fd) int fd CODE: |