Changeset 49a8434
- Timestamp:
- Dec 6, 2008, 6:55:29 PM (16 years ago)
- Branches:
- master, debian, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- b9cb41b
- Parents:
- 7ce4003
- git-author:
- Nelson Elhage <nelhage@mit.edu> (12/06/08 18:52:42)
- git-committer:
- Nelson Elhage <nelhage@mit.edu> (12/06/08 18:55:29)
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
functions.c
r2aaca94 r49a8434 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 r49a8434 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 r49a8434 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.