vfs: code review fixes

- fix typo in readme
- remove unneeded extern declaration
- fix header guard macro
- tabs->spaces in syscalls.c
- spaces->tabs in tasks.c
This commit is contained in:
Ivan Grokhotkov
2016-10-27 11:47:41 +08:00
parent da56e76255
commit 6f1d3ce4a7
6 changed files with 34 additions and 30 deletions

View File

@@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef __ESP_VFS_H__
#define __ESP_VFS_H__
#ifndef __ESP_VFS_DEV_H__
#define __ESP_VFS_DEV_H__
#include "esp_vfs.h"
@@ -25,4 +25,4 @@
void esp_vfs_dev_uart_register();
#endif //__ESP_VFS_H__
#endif //__ESP_VFS_DEV_H__