Changeset 1be9ee0 in mainline
- Timestamp:
- 2023-11-30T23:34:51Z (14 months ago)
- Branches:
- master, topic/simplify-dev-export
- Children:
- 0d275e1
- Parents:
- a635535
- Location:
- uspace
- Files:
-
- 4 added
- 6 edited
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/chargrid.c
ra635535 r1be9ee0 27 27 */ 28 28 29 /** @addtogroup libc onsole29 /** @addtogroup libc 30 30 * @{ 31 31 */ -
uspace/lib/c/include/io/chargrid.h
ra635535 r1be9ee0 27 27 */ 28 28 29 /** @addtogroup libc onsole29 /** @addtogroup libc 30 30 * @{ 31 31 */ … … 34 34 */ 35 35 36 #ifndef _LIBC ONSOLE_IO_CHARGRID_H_37 #define _LIBC ONSOLE_IO_CHARGRID_H_36 #ifndef _LIBC_IO_CHARGRID_H_ 37 #define _LIBC_IO_CHARGRID_H_ 38 38 39 39 #include <io/charfield.h> -
uspace/lib/c/meson.build
ra635535 r1be9ee0 106 106 'generic/io/io.c', 107 107 'generic/io/chargrid.c', 108 'generic/io/output.c',109 108 'generic/io/printf.c', 110 109 'generic/io/log.c', -
uspace/lib/meson.build
ra635535 r1be9ee0 77 77 'nettl', 78 78 'ofw', 79 'output', 79 80 'pcm', 80 81 'pcut', -
uspace/lib/output/include/io/output.h
ra635535 r1be9ee0 27 27 */ 28 28 29 /** @addtogroup lib c29 /** @addtogroup liboutput 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef _LIB C_IO_OUTPUT_H_36 #define _LIB C_IO_OUTPUT_H_35 #ifndef _LIBOUTPUT_IO_OUTPUT_H_ 36 #define _LIBOUTPUT_IO_OUTPUT_H_ 37 37 38 38 #include <ipc/output.h> -
uspace/lib/output/include/ipc/output.h
ra635535 r1be9ee0 27 27 */ 28 28 29 /** @addtogroup lib cipc29 /** @addtogroup liboutput 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef _LIB C_IPC_OUTPUT_H_36 #define _LIB C_IPC_OUTPUT_H_35 #ifndef _LIBOUTPUT_IPC_OUTPUT_H_ 36 #define _LIBOUTPUT_IPC_OUTPUT_H_ 37 37 38 38 #include <ipc/common.h> -
uspace/lib/output/src/output.c
ra635535 r1be9ee0 27 27 */ 28 28 29 /** @addtogroup lib c29 /** @addtogroup liboutput 30 30 * @{ 31 31 */ -
uspace/srv/hid/console/meson.build
ra635535 r1be9ee0 28 28 # 29 29 30 deps = [ 'console' ]30 deps = [ 'console', 'output' ] 31 31 src = files('console.c') -
uspace/srv/hid/output/meson.build
ra635535 r1be9ee0 28 28 # 29 29 30 deps = [ 'codepage', 'console', 'drv', 'fbfont', 'pixconv', 'ddev' ]30 deps = [ 'codepage', 'console', 'drv', 'fbfont', 'pixconv', 'ddev', 'output' ] 31 31 src = files( 32 32 'ctl/serial.c',
Note:
See TracChangeset
for help on using the changeset viewer.