9d8970e27a
This way, users need only type "make" to build instead of needing to "cd wmppp" first.
18 lines
243 B
C
18 lines
243 B
C
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
|
|
FILE *fd;
|
|
char temp[256];
|
|
|
|
fd = popen("tac /etc/ppp/connect-errors | grep '['CONNECT'|'CARRIER']' | head -1", "r");
|
|
|
|
while (fgets(temp, 256, fd)) {
|
|
printf("%s", temp);
|
|
}
|
|
|
|
pclose(fd);
|
|
|
|
return 0;
|
|
}
|