Skip to content

Instantly share code, notes, and snippets.

@2bits
Created November 17, 2012 03:47
Show Gist options
  • Save 2bits/4093125 to your computer and use it in GitHub Desktop.
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
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