Synopsis: include " included file";
The include statement allows you to insert contents of a file at the given place in the current file. If the current file is a module, the contents of the included file will become a part of the module.
This is useful for dividing a large file into number of pieces. However, if a file is included more than once in a single block, the 2nd, 3rd etc. include statements are ignored.
The included file can be
a relative or an absolute file name. Relative
names are looked up with /usr/share/YaST2/include
as a base.
Example 8.21. Include a file
// this will include /usr/share/YaST2/include/program/definitions.ycp include "program/definitions.ycp";