summaryrefslogtreecommitdiffstats
path: root/libs/printf/printf.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/printf/printf.h')
-rw-r--r--libs/printf/printf.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/libs/printf/printf.h b/libs/printf/printf.h
index 6075bc2..de72d5c 100644
--- a/libs/printf/printf.h
+++ b/libs/printf/printf.h
@@ -10,10 +10,10 @@
// 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
@@ -57,7 +57,8 @@ void _putchar(char character);
* \param format A string that specifies the format of the output
* \return The number of characters that are written into the array, not counting the terminating null character
*/
-#define printf printf_
+//lint -esym(534,printf_)
+#define printf printf_ //lint !e828
int printf_(const char* format, ...);
@@ -68,7 +69,7 @@ int printf_(const char* format, ...);
* \param format A string that specifies the format of the output
* \return The number of characters that are WRITTEN into the buffer, not counting the terminating null character
*/
-#define sprintf sprintf_
+#define sprintf sprintf_ //lint !e828
int sprintf_(char* buffer, const char* format, ...);
@@ -93,7 +94,7 @@ int vsnprintf_(char* buffer, size_t count, const char* format, va_list va);
* \param va A value identifying a variable arguments list
* \return The number of characters that are WRITTEN into the buffer, not counting the terminating null character
*/
-#define vprintf vprintf_
+#define vprintf vprintf_ //lint !e828
int vprintf_(const char* format, va_list va);
OpenPOWER on IntegriCloud