Changeset 9dae191e in mainline for uspace/app/top
- Timestamp:
- 2010-04-18T00:24:40Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a80687e5
- Parents:
- d8e3467
- Location:
- uspace/app/top
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/top/Makefile
rd8e3467 r9dae191e 29 29 30 30 USPACE_PREFIX = ../.. 31 BINARY = top31 # BINARY = top 32 32 33 33 SOURCES = \ -
uspace/app/top/func.c
rd8e3467 r9dae191e 33 33 /** 34 34 * @file 35 * @brief 35 * @brief Miscellaneous functions. 36 36 */ 37 37 38 #include <stdio.h> 39 38 #include <stdint.h> 40 39 #include "func.h" 41 40 -
uspace/app/top/func.h
rd8e3467 r9dae191e 27 27 */ 28 28 29 /** @addtogroup ps29 /** @addtogroup top 30 30 * @{ 31 31 */ … … 36 36 #define FUNC_H_ 37 37 38 extern void order(const uint64_t val, uint64_t *rv, char *suffix); 38 #include <stdint.h> 39 40 extern void order(const uint64_t, uint64_t *, char *); 39 41 40 42 #endif
Note:
See TracChangeset
for help on using the changeset viewer.