From 35ae4275d8730a376ca61a92f08fb447eb2935b3 Mon Sep 17 00:00:00 2001 From: batt Date: Wed, 28 Nov 2007 21:49:30 +0000 Subject: [PATCH] Rename algos directory to algo. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1008 38d2e660-2303-0410-9eaa-f027e97ec537 --- {algos => algo}/crc.c | 0 {algos => algo}/crc.h | 0 {algos => algo}/md2.c | 0 {algos => algo}/md2.h | 0 {algos => algo}/randpool.c | 0 {algos => algo}/randpool.h | 0 {algos => algo}/rotating_hash.h | 0 {algos => algo}/tea.c | 0 {algos => algo}/tea.h | 0 app/randpool/randpool_demo.c | 4 ++-- fs/battfs.h | 2 +- mware/xmodem.c | 2 +- 12 files changed, 4 insertions(+), 4 deletions(-) rename {algos => algo}/crc.c (100%) rename {algos => algo}/crc.h (100%) rename {algos => algo}/md2.c (100%) rename {algos => algo}/md2.h (100%) rename {algos => algo}/randpool.c (100%) rename {algos => algo}/randpool.h (100%) rename {algos => algo}/rotating_hash.h (100%) rename {algos => algo}/tea.c (100%) rename {algos => algo}/tea.h (100%) diff --git a/algos/crc.c b/algo/crc.c similarity index 100% rename from algos/crc.c rename to algo/crc.c diff --git a/algos/crc.h b/algo/crc.h similarity index 100% rename from algos/crc.h rename to algo/crc.h diff --git a/algos/md2.c b/algo/md2.c similarity index 100% rename from algos/md2.c rename to algo/md2.c diff --git a/algos/md2.h b/algo/md2.h similarity index 100% rename from algos/md2.h rename to algo/md2.h diff --git a/algos/randpool.c b/algo/randpool.c similarity index 100% rename from algos/randpool.c rename to algo/randpool.c diff --git a/algos/randpool.h b/algo/randpool.h similarity index 100% rename from algos/randpool.h rename to algo/randpool.h diff --git a/algos/rotating_hash.h b/algo/rotating_hash.h similarity index 100% rename from algos/rotating_hash.h rename to algo/rotating_hash.h diff --git a/algos/tea.c b/algo/tea.c similarity index 100% rename from algos/tea.c rename to algo/tea.c diff --git a/algos/tea.h b/algo/tea.h similarity index 100% rename from algos/tea.h rename to algo/tea.h diff --git a/app/randpool/randpool_demo.c b/app/randpool/randpool_demo.c index 612eda4c..3010cd10 100644 --- a/app/randpool/randpool_demo.c +++ b/app/randpool/randpool_demo.c @@ -60,8 +60,8 @@ #include #include #include -#include -#include +#include +#include #include #define LEN 256 //Size of buffer containing a random number. diff --git a/fs/battfs.h b/fs/battfs.h index 4b8fcbe8..33f241b3 100644 --- a/fs/battfs.h +++ b/fs/battfs.h @@ -42,7 +42,7 @@ #define FS_BATTFS_H #include // uintXX_t; STATIC_ASSERT -#include +#include typedef uint16_t filled_t; typedef uint16_t page_off_t; diff --git a/mware/xmodem.c b/mware/xmodem.c index e4104779..030783d3 100644 --- a/mware/xmodem.c +++ b/mware/xmodem.c @@ -51,7 +51,7 @@ #include #include /* for memset() */ #include -#include +#include #include -- 2.25.1