support McKernel's sysfs tree

This commit is contained in:
NAKAMURA Gou
2015-11-20 16:46:08 +09:00
parent e805249651
commit 8cb72df663
14 changed files with 2625 additions and 10 deletions

22
lib/include/vsprintf.h Normal file
View File

@@ -0,0 +1,22 @@
/**
* \file vsprintf.h
* License details are found in the file LICENSE.
* \brief
* declare printf() like functions
* \author Gou Nakamura <go.nakamura.yw@hitachi-solutions.com> \par
* Copyright (C) 2015 RIKEN AICS
*/
/*
* HISTORY
*/
#ifndef VSPRINTF_H
#define VSPRINTF_H
#include <stdarg.h>
#include <types.h>
extern int vsnprintf(char *buf, size_t size, const char *fmt, va_list args);
extern int snprintf(char *buf, size_t size, const char *fmt, ...);
#endif