diff options
Diffstat (limited to 'Zend/zend_sprintf.c')
-rw-r--r-- | Zend/zend_sprintf.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/Zend/zend_sprintf.c b/Zend/zend_sprintf.c index 8f382c9204..2ef3069a17 100644 --- a/Zend/zend_sprintf.c +++ b/Zend/zend_sprintf.c @@ -4,16 +4,20 @@ +----------------------------------------------------------------------+ | Copyright (c) 1998, 1999 Andi Gutmans, Zeev Suraski | +----------------------------------------------------------------------+ - | This source file is subject to the Zend license, that is bundled | - | with this package in the file LICENSE. If you did not receive a | - | copy of the Zend license, please mail us at zend@zend.com so we can | - | send you a copy immediately. | + | This source file is subject to version 0.90 of the Zend license, | + | that is bundled with this package in the file LICENSE, and is | + | available at through the world-wide-web at | + | http://www.zend.com/license/0_90.txt. | + | If you did not receive a copy of the Zend license and are unable to | + | obtain it through the world-wide-web, please send a note to | + | license@zend.com so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Authors: Andi Gutmans <andi@zend.com> | | Zeev Suraski <zeev@zend.com> | +----------------------------------------------------------------------+ */ + #include <stdio.h> #include "zend.h" @@ -33,4 +37,4 @@ int zend_sprintf(char *buffer, const char *format, ...) return strlen(buffer); } -#endif
\ No newline at end of file +#endif |