diff options
author | Josh Blum <josh@joshknows.com> | 2011-01-10 13:35:32 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-01-10 13:35:32 -0800 |
commit | 901bfcbd2bbfe537dead32d08cdf06b7319d9ec6 (patch) | |
tree | b8e22fa4a4a4cb127b53233b7a31d4b46cd93af2 /firmware/zpu/apps/cruft/can_i_sub.c | |
parent | 2106c6cf594866061f56b09d1396bb80df51802e (diff) | |
download | uhd-901bfcbd2bbfe537dead32d08cdf06b7319d9ec6.tar.gz uhd-901bfcbd2bbfe537dead32d08cdf06b7319d9ec6.tar.bz2 uhd-901bfcbd2bbfe537dead32d08cdf06b7319d9ec6.zip |
usrp2: removed cruft and bitrot apps from fw
Diffstat (limited to 'firmware/zpu/apps/cruft/can_i_sub.c')
-rw-r--r-- | firmware/zpu/apps/cruft/can_i_sub.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/firmware/zpu/apps/cruft/can_i_sub.c b/firmware/zpu/apps/cruft/can_i_sub.c deleted file mode 100644 index ed49791f0..000000000 --- a/firmware/zpu/apps/cruft/can_i_sub.c +++ /dev/null @@ -1,25 +0,0 @@ -#include <u2_init.h> -#include <nonstdio.h> - -//typedef long long int64_t; - - -int64_t sub(int64_t a, int64_t b); -void print(int64_t d); - -int main(void) -{ - u2_init(); - - int64_t d = sub(462550990848000LL, 462028800000000LL); - print_uint64(d); - newline(); - return 0; -} - -int64_t sub(int64_t a, int64_t b) -{ - return a - b; -} - - |