Changeset 44fc93b
- Timestamp:
- Dec 13, 2008, 5:32:05 PM (16 years ago)
- Children:
- 5547211b
- Parents:
- d4b6b23
- git-author:
- Nelson Elhage <nelhage@mit.edu> (12/06/08 18:52:42)
- git-committer:
- Nelson Elhage <nelhage@mit.edu> (12/13/08 17:32:05)
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
functions.c
r2aaca94 r44fc93b 1954 1954 void owl_function_status() 1955 1955 { 1956 char buff[ 5000];1956 char buff[MAXPATHLEN+1]; 1957 1957 time_t start; 1958 1958 int up, days, hours, minutes; … … 1974 1974 1975 1975 owl_fmtext_append_normal(&fm, " Current Directory: "); 1976 (void) getcwd(buff, MAXPATHLEN); 1977 owl_fmtext_append_normal(&fm, buff); 1976 if(getcwd(buff, MAXPATHLEN) == NULL) { 1977 owl_fmtext_append_normal(&fm, "<Error in getcwd>"); 1978 } else { 1979 owl_fmtext_append_normal(&fm, buff); 1980 } 1978 1981 owl_fmtext_append_normal(&fm, "\n"); 1979 1982 -
popexec.c
r1971b59 r44fc93b 73 73 dup2(child_write_fd, 2 /*stderr*/); 74 74 close(child_write_fd); 75 76 while(0) {77 write(child_write_fd, "meep\n", 5);78 sleep(1);79 }80 75 81 76 argv[0] = "sh"; -
wcwidth.c
r47519e1b r44fc93b 62 62 #include <wchar.h> 63 63 64 st atic struct interval {64 struct interval { /* noproto */ 65 65 int first; 66 66 int last;
Note: See TracChangeset
for help on using the changeset viewer.