summaryrefslogtreecommitdiff
path: root/Documentation/DocBook
diff options
context:
space:
mode:
authorAndrew Morton <akpm@digeo.com>2003-03-22 07:35:43 -0800
committerDavid S. Miller <davem@kernel.bkbits.net>2003-03-22 07:35:43 -0800
commit6ada8a9c2f021fd071948431b4e0ca051fd8721e (patch)
tree22b3fd8df31302f2da103c7cb6e83422f328327a /Documentation/DocBook
parentcf59843bed891f87726abac576adcf2775b235af (diff)
[PATCH] More syscalls-returning-long
From: Robert Love <rml@tech9.net> Additional work to make syscalls return longs.
Diffstat (limited to 'Documentation/DocBook')
-rw-r--r--Documentation/DocBook/kernel-hacking.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/DocBook/kernel-hacking.tmpl b/Documentation/DocBook/kernel-hacking.tmpl
index 4ddb5ab9e3f8..f202622aedf5 100644
--- a/Documentation/DocBook/kernel-hacking.tmpl
+++ b/Documentation/DocBook/kernel-hacking.tmpl
@@ -319,7 +319,7 @@
</para>
<programlisting>
-asmlinkage int sys_mycall(int arg)
+asmlinkage long sys_mycall(int arg)
{
return 0;
}