This file contains hidden or 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
/* config.h. Generated from config.h.in by configure. */ | |
/* config.h.in. Generated from configure.ac by autoheader. */ | |
/* Define to the address where bug reports for this package should be sent. */ | |
#define PACKAGE_BUGREPORT "[email protected]" | |
/* Define to the full name of this package. */ | |
#define PACKAGE_NAME "ac-sys-largefile-bug" | |
/* Define to the full name and version of this package. */ |
This file contains hidden or 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
diff --git a/OpenSSL/Session.hsc b/OpenSSL/Session.hsc | |
index de054fe..c4637e6 100644 | |
--- a/OpenSSL/Session.hsc | |
+++ b/OpenSSL/Session.hsc | |
@@ -319,7 +319,9 @@ fdConnection :: SSLContext -> Fd -> IO SSL | |
fdConnection context fd = connection' context fd Nothing | |
withSSL :: SSL -> (Ptr SSL_ -> IO a) -> IO a | |
-withSSL = withMVar . sslMVar | |
+withSSL ssl f = do a <- withMVar (sslMVar ssl) f |
This file contains hidden or 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
#!/usr/bin/env bash | |
# | |
# Example: | |
# | |
# . colours.sh | |
# | |
# setColour bold underline green:black | |
# echo "Hello, world!" | |
# setColour reset | |
# |
This file contains hidden or 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
#!/bin/sh | |
fibonacci_init() { | |
_fib_0=1 | |
_fib_1=1 | |
_fib_2=1 | |
_fib_n=0 | |
} | |
fibonacci_next() { |
NewerOlder