diff options
author | Michael Steinert <mike.steinert@gmail.com> | 2012-05-16 12:31:06 -0600 |
---|---|---|
committer | Michael Steinert <mike.steinert@gmail.com> | 2012-05-17 11:44:46 -0600 |
commit | 93e04d3ae102937f301259b18d74accd40e069b4 (patch) | |
tree | 9c5356f68cf43f8894765e1b581d1fb0d2af847d /tools/win32/compat.h | |
parent | c921feb829e79a33938300350e61e3c3fb217968 (diff) | |
download | rabbitmq-c-github-ask-93e04d3ae102937f301259b18d74accd40e069b4.tar.gz |
Cleanup Win32 artifacts
1. Standardize on `win32` vs `windows/win32`
2. Move `msinttypes` into platform directory
Signed-off-by: Michael Steinert <mike.steinert@gmail.com>
Diffstat (limited to 'tools/win32/compat.h')
-rw-r--r-- | tools/win32/compat.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tools/win32/compat.h b/tools/win32/compat.h new file mode 100644 index 0000000..9b9c96a --- /dev/null +++ b/tools/win32/compat.h @@ -0,0 +1,33 @@ +/* + * ***** BEGIN LICENSE BLOCK ***** + * Version: MIT + * + * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. + * All Rights Reserved. + * + * Portions created by Tony Garnock-Jones are Copyright (c) 2009-2010 + * VMware, Inc. and Tony Garnock-Jones. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, copy, + * modify, merge, publish, distribute, sublicense, and/or sell copies + * of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + * ***** END LICENSE BLOCK ***** + */ + +extern int asprintf(char **strp, const char *fmt, ...); |