I’ve seen system calls with numbers in them. For example: xterm(1), efence(3). I wanted to know what does 1 and 3 or for that matter any other number in these system calls mean?
I’ve seen system calls with numbers in them. For example: xterm(1), efence(3). I wanted
Share
Those numbers are the section of the manual, from the man page on
man:You can specify which section of the manual you want by adding the section number before the page you are looking for, the default result will be the lowest numbered section with the entry you are looking for. For example
man execandman 1 execwill take you to the shell command, andman 3 execwill take you to the C library page.