当前位置:  技术问答>linux和unix

编写who命令的错误!

    来源: 互联网  发布时间:2016-04-02

    本文导语:  源代码如下:  1 /*who2.c - a second version of the who program   2  *  open ,read utmp file , and show results   3  */   4 #include            5 #include            6 #include            7 #include        ...

源代码如下:
 1 /*who2.c - a second version of the who program
  2  *  open ,read utmp file , and show results
  3  */
  4 #include         
  5 #include         
  6 #include         
  7 #include         
  8 #include         
  9 #define          SHOWHOST
 10
 11 int main()
 12 {
 13         void show_info(struct utmp * utbufp );
 14         void _showtime(long);
 15         struct utmp  current_record;
 16         int    utmpfd;
 17         int    reclen = sizeof ( current_record );
 18         if (( utmpfd = open ( UTMP_FILE , O_RDONLY ) ) == -1 ) /* int fd = open ( char * name , int how ) */
 19         {
 20                 perror( UTMP_FILE );
 21                 exit(1);
 22         }
 23         while ( read (utmpfd , ¤t_record, reclen ) == reclen ) /*ssize_t read(int fd, void *buf, size_t count);8*/
 24                 show_info( ¤t_record );
 25         close( utmpfd );
 26         return 0;
 27 }
 28
 29 /*show info ()
 30  * displays contexts of the utmp struct in human readdable form
 31  * NOTE these sizes should not be hardwired
 32  */
 33
 34 void show_info(struct utmp * utbufp )
 35 {
 36         if( utbufp->ut_type != USER_PROCESS)
 37                 return ;
 38         printf( " %-8.8s " ,utbufp->ut_user );
 39         printf( " " );
 40         printf( " %-8.8s " ,utbufp->ut_line );
 41         printf( " " );
 42         showtime(utbufp->ut_time );
 43         printf( " " );
 44
 45 #ifdef SHOWHOST
 46         if ( utbufp->ut_user[0] != '' )
 47         printf( " (%s)" ,utbufp->ut_host );
 48 #endif
 49         printf(" n " );
 50 }
 51
 52
 53 void    showtime(long timeval )
 54 /* displays time in a format fit for human consumption
 55  * use ctime to build a string then picks parts out of it
 56  * Note : % 12,12s prints a string 12 chars wide and LIMITS
 57  * it to 12chars
 58  */
 59 {
 60         char *cp ;
 61         cp = ctime ( &timeval ) ;     /* char *ctime(const time_t *clock);**/
 62         printf(" %12.12s" , cp +4 );
 63 }
 64
 65

错误提示:
/root/tmp/ccXmrdRj.o: In function `show_info':
/root/u_l_me/chapter_2/who2.c:42: undefined reference to `showtime'
collect2: ld 返回 1
自己的确是不知道那里错误了,请高手指教!

|
 void    showtime(long  );

把这个声明加到main函数前面

|
void _showtime(long);

showtime(utbufp->ut_time );
认真检查下代码..

    
 
 

您可能感兴趣的文章:

  • 如何在我的C语言编写的程序里面执行命令行命令,比如ls -la ??
  • AIX下如何编写批处理命令和计划任务
  • 如何用SHELL编写自定义的命令??
  • Linux下如何用C语言编写命令行下的菜单
  • ★★在自己编写的shell程序中,如何实现命令补全?
  • 新手问一个简单问题:用什么命令来结束自己编写的服务端程序
  • 在CMP中怎样编写类似于Update,delete等操作命令
  • 怎样让自己编写的程序成为命令
  • 如何在普通用户编写的shell脚本里面执行root用户才有的命令
  • 用记事本编写了一个Servlet,但在命令行中编绎时却说找不到包:
  • 求教:如何在用C++编写的server中调用Linux命令
  • 如何编写Shell,当SQL执行完毕后,继续调用Shell命令。
  • 入门者的问题:我在UNIX的环境下,编写了c程my.c,编译后生成 my*,可是用什么命令执行这个程序呀?
  • Linux下一个gcc命令的编写,求教。
  • 我现在在编写一个在LINUX下运行的命令解释器,对于后台运行的命令方法有些不懂,请高手指点一下
  • 用jbuilder7编写成功运行正常的程序在用jdk中java命令执行出错,请帮忙!
  • 小弟编写了一个小例,shell中命令行参数和-z选项的错误
  • 请教关于编写一个shell命令的小.sh小程序
  • C++编写FTP客户端解析LIST命令获取目录不完整,求解。
  • 编写ls命令,文件名字字典序排列问题
  • 我编写的Makefile文件怎么老是有错误那??
  • 编写内核模块程序的makefile文件make错误
  • Python编写的com组件发生R6034错误的原因与解决办法
  • 初次编写消息队列程序,错误百出。
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 求教:如何在用C++编写的server中调用Linux命令 iis7站长之家
  • VB编写的DLL不能被JAVA调用,用C将VB编写的DLL包装起来,做成一个新的DLL;用C编写的DLL可以被JAVA调用,用JAVA再进行一层的包装,因为JAV
  • 用Qt3.1.4编写的程序,如何加入自己编写的另外一个动态库呀?诚恳指教!!
  • 如图 scsi <---> scsi controller <---> pci <---> cpu 如果我想对scsi编写驱动我该对哪个部分编写?
  • 用什么工具编写JSP,可以象用InterDev编写ASP一样方便快捷?
  • 编写程序如编写人生,有人和我的意见相同吗?
  • 请问用jsp编写程序,非要编写代码么?有没有什么象fontpage2000那样的工具,能够生成一些固定模板的工具?就是说不用全部都写的工具。望
  • 用jsp编写web程序到底和java serverlet编写web程序有和区别
  • socket中,从client端(用java编写的)传到server端(用c编写的)的字符串为何总多一个ASCII码为10的字符呀?
  • 如何用java编写一个NT平台下的标准服务?
  • 关于用vj编写sniffer一问。
  • Linux下如何编写脚本文件
  • java能不能编写单独运行的程序?
  • Linux有没有类似bat文件,如何编写。
  • 用JAVA编写COM组件
  • 关于版本和bug管理的rule(规则)的编写
  • 在windows下可以用Code::Blocks编写linux程序吗?
  • 函数互相调用时Makefile编写
  • linux下用java编写邮箱客户端程序与在windows下有什么不同??
  • 怎么用JBuild编写java console程序


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3