Created
November 17, 2012 03:47
-
-
Save 2bits/4093125 to your computer and use it in GitHub Desktop.
An octave blas conftest.f that fails on OSX 10.6 but succeeds on 10.8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
program main | |
logical lsame,w | |
external lsame | |
character c1,c2 | |
c1 = 'A' | |
c2 = 'B' | |
w = lsame(c1,c2) | |
if (w) stop 1 | |
w = lsame(c1,c1) | |
if (.not. w) stop 1 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment