mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-23 07:19:15 +00:00
7 lines
231 B
C
7 lines
231 B
C
|
/* Respond to a save- or restore-cwd failure.
|
||
|
This should never happen with Emacs. */
|
||
|
#include <config.h>
|
||
|
#include "openat.h"
|
||
|
void openat_save_fail (int errnum) { abort (); }
|
||
|
void openat_restore_fail (int errnum) { abort (); }
|