diff options
author | hunt <hunt> | 2005-03-22 18:36:50 +0000 |
---|---|---|
committer | hunt <hunt> | 2005-03-22 18:36:50 +0000 |
commit | e94cb46c2219da504a559d49eeda3e4134b96453 (patch) | |
tree | 8ace56077fbeef519ba8e4283d358f3c1053571c /runtime/copy.c | |
parent | b9c556e44326b40b2c927a0a5b5626332a8c9587 (diff) | |
download | systemtap-steved-e94cb46c2219da504a559d49eeda3e4134b96453.tar.gz systemtap-steved-e94cb46c2219da504a559d49eeda3e4134b96453.tar.xz systemtap-steved-e94cb46c2219da504a559d49eeda3e4134b96453.zip |
*** empty log message ***
Diffstat (limited to 'runtime/copy.c')
-rw-r--r-- | runtime/copy.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/runtime/copy.c b/runtime/copy.c index 6eaab3d9..688207e5 100644 --- a/runtime/copy.c +++ b/runtime/copy.c @@ -1,3 +1,8 @@ +/* -*- linux-c -*- */ +/** @file copy.c + * @brief Functions to copy from user space. + */ + long _stp_strncpy_from_user(char *dst, const char __user *src, long count); //static long __stp_strncpy_from_user(char *dst, const char __user *src, long count); @@ -74,7 +79,6 @@ do { \ * <i>count</i> bytes and returns <i>count</i>. */ - long _stp_strncpy_from_user(char *dst, const char __user *src, long count) { |